Skip to content

Commit

Permalink
Change example csproj extension to .csproj.xml for simplicity in build
Browse files Browse the repository at this point in the history
When running dotnet run on Chapter 3, the compiler didn't know which csproj file to choose.
Also updated TargetFramework to net5.0
  • Loading branch information
BenjaminMichaelis committed Dec 30, 2021
1 parent b1401af commit 6c01757
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.0</TargetFramework>
<TargetFramework>net5.0</TargetFramework>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>

0 comments on commit 6c01757

Please sign in to comment.