mirror of https://github.com/dapr/quickstarts.git
19 lines
498 B
XML
19 lines
498 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Dapr.Actors" Version="1.15.0-rc02" />
|
|
<PackageReference Include="Dapr.Actors.AspNetCore" Version="1.15.0-rc02" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\interfaces\SmartDevice.Interfaces.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|