intro-to-dotnet-web-dev/2-csharp/lesson-5-projects/challenge-project/Starter/Starter.csproj

11 lines
239 B
XML
Raw Normal View History

2023-07-06 02:29:46 +02:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
2023-07-06 02:50:55 +02:00
<TargetFramework>net6.0</TargetFramework>
2023-07-06 02:29:46 +02:00
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>