deployment/Deployment/Deployment.csproj

19 lines
471 B
XML
Raw Normal View History

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>true</IsPackable>
<Version>0.0.1</Version>
</PropertyGroup>
2024-10-24 16:05:50 -04:00
<ItemGroup>
<PackageReference Include="newtonsoft.json" Version="13.0.3" />
</ItemGroup>
2024-10-24 16:05:50 -04:00
<ItemGroup>
<InternalsVisibleTo Include="deployment.tests" />
</ItemGroup>
</Project>