cs11dotnet7/vs4win/Chapter02/Arguments/Arguments.csproj

16 lines
319 B
XML
Raw Normal View History

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