cs11dotnet7/vscode/Chapter07/DotNetEverywhere/DotNetEverywhere.csproj

18 lines
437 B
XML
Raw Normal View History

2022-02-28 21:09:20 +01:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
2022-11-09 13:26:34 +01:00
<RuntimeIdentifiers>
win10-x64;osx-x64;osx.11.0-arm64;linux-x64;linux-arm64
</RuntimeIdentifiers>
</PropertyGroup>
2022-02-28 21:09:20 +01:00
2022-11-09 13:26:34 +01:00
<ItemGroup>
<Using Include="System.Console" Static="true" />
</ItemGroup>
2022-02-28 21:09:20 +01:00
</Project>