deployment/Deployment/Deployment.csproj

19 lines
471 B
XML
Raw Normal View History

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
2024-11-11 00:34:57 -05:00
<TargetFramework>net7.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>