cs11dotnet7/vs4win/Chapter03/BitwiseAndShiftOperators/BitwiseAndShiftOperators.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>
2022-02-18 13:50:08 +01: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>