cs11dotnet7/vs4win/Chapter02/Formatting/Formatting.csproj

15 lines
322 B
XML
Raw Permalink Normal View History

2022-02-13 17:03:32 +01:00
<Project Sdk="Microsoft.NET.Sdk">
2022-11-09 12:59:21 +01:00
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
2022-02-13 17:03:32 +01:00
2022-11-09 12:59:21 +01:00
<ItemGroup>
<Using Include="System.Console" Static="true" />
</ItemGroup>
2022-02-13 17:03:32 +01:00
</Project>