quickstarts/actors/csharp/sdk/client/SmartDevice.Client.csproj

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>