mirror of https://github.com/dapr/quickstarts.git
19 lines
444 B
XML
19 lines
444 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<OutputType>Exe</OutputType>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Dapr.Actors" Version="1.12.*-*" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\interfaces\SmartDevice.Interfaces.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|