cs11dotnet7/vscode/Chapter06/PeopleApp/PeopleApp.csproj

19 lines
426 B
XML
Raw Normal View History

2022-02-27 20:08:52 +01:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
2022-11-09 13:21:31 +01:00
<Using Include="System.Console" Static="true" />
2022-02-27 20:08:52 +01:00
</ItemGroup>
2022-11-09 13:21:31 +01:00
<ItemGroup>
<ProjectReference Include="..\PacktLibrary\PacktLibrary.csproj" />
</ItemGroup>
2022-02-27 20:08:52 +01:00
</Project>