cs11dotnet7/vscode/Chapter05/PacktLibraryNetStandard2/PacktLibraryNetStandard2.csproj

15 lines
331 B
XML
Raw Normal View History

2022-11-09 13:12:08 +01:00
<Project Sdk="Microsoft.NET.Sdk">
2022-02-20 18:22:06 +01:00
2022-11-09 13:12:08 +01:00
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<LangVersion>11</LangVersion>
2022-09-17 17:33:54 +02:00
<ImplicitUsings>enable</ImplicitUsings>
2022-11-09 13:12:08 +01:00
<Nullable>enable</Nullable>
2022-09-17 17:33:54 +02:00
</PropertyGroup>
2022-02-20 18:22:06 +01:00
2022-11-09 13:12:08 +01:00
<ItemGroup>
<Using Include="System.Console" Static="true" />
</ItemGroup>
2022-02-20 18:22:06 +01:00
</Project>