cs11dotnet7/vscode/Chapter03/Ch03Ex02LoopsAndOverflow/Ch03Ex02LoopsAndOverflow.csproj

15 lines
308 B
XML
Raw Normal View History

2022-02-18 13:13:25 +01:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
2023-10-06 10:00:47 +02:00
<TargetFramework>net7.0</TargetFramework>
2022-02-18 13:13:25 +01:00
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<Using Include="System.Console" Static="true" />
</ItemGroup>
</Project>