cs11dotnet7/vscode/Chapter11/LinqWithObjects/LinqWithObjects.csproj

16 lines
365 B
XML
Raw Normal View History

2022-03-06 11:37:59 +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" />
<!--<Using Remove="System.Linq" />-->
</ItemGroup>
</Project>