Created
September 26, 2021 02:23
-
-
Save ManfredLange/d1ef6e6ca6a6066e9bceb177a2c46c41 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Project Sdk="Microsoft.NET.Sdk"> | |
<PropertyGroup> | |
<TargetFramework>net5.0</TargetFramework> | |
<IsPackable>false</IsPackable> | |
</PropertyGroup> | |
<ItemGroup> | |
<PackageReference Include="Microsoft.Azure.Cosmos" Version="3.21.0" /> | |
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="5.0.0" /> | |
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.9.4" /> | |
<PackageReference Include="NUnit" Version="3.13.1" /> | |
<PackageReference Include="NUnit3TestAdapter" Version="3.17.0" /> | |
<PackageReference Include="coverlet.collector" Version="3.0.2" /> | |
</ItemGroup> | |
<ItemGroup> | |
<Content Include="./appsettings.Local.json"> | |
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | |
</Content> | |
</ItemGroup> | |
</Project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment