cs11dotnet7/vscode/Chapter07/AssembliesAndNamespaces/AssembliesAndNamespaces.csproj

25 lines
634 B
XML
Raw Normal View History

2022-02-28 21:09:20 +01:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<Using Include="System.Console" Static="true" />
</ItemGroup>
<ItemGroup>
<Using Remove="System" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="packt.csdotnet.sharedlibrary" Version="7.0.0" />
<PackageReference Include="dialectsoftware.collections.matrix" Version="1.0.0" />
</ItemGroup>
</Project>