cs11dotnet7/vscode/Chapter09/WorkingWithStreams/WorkingWithStreams.csproj

15 lines
322 B
XML
Raw Normal View History

2022-03-04 09:34:29 +01:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
2022-11-09 13:41:23 +01:00
<ItemGroup>
<Using Include="System.Console" Static="true" />
</ItemGroup>
2022-03-04 09:34:29 +01:00
</Project>