cs11dotnet7/vs4win/Chapter04/WritingFunctions/WritingFunctions.csproj

15 lines
308 B
XML
Raw Normal View History

2022-02-19 20:56:52 +01:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<Using Include="System.Console" Static="true" />
</ItemGroup>
</Project>