cs11dotnet7/vscode/Chapter05/PeopleApp/PeopleApp.csproj

20 lines
530 B
XML
Raw Normal View History

2022-11-09 13:12:52 +01:00
<Project Sdk="Microsoft.NET.Sdk">
2022-02-20 18:22:06 +01:00
2022-11-09 13:12:52 +01:00
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
2022-02-20 18:22:06 +01:00
2022-11-09 13:12:52 +01:00
<ItemGroup>
2022-09-17 17:33:54 +02:00
<ProjectReference Include="..\PacktLibraryModern\PacktLibraryModern.csproj" />
<ProjectReference Include="..\PacktLibraryNetStandard2\PacktLibraryNetStandard2.csproj" />
2022-11-09 13:12:52 +01:00
</ItemGroup>
2022-02-20 18:22:06 +01:00
2022-11-09 13:12:52 +01:00
<ItemGroup>
<Using Include="System.Console" Static="true" />
</ItemGroup>
2022-02-20 18:22:06 +01:00
</Project>