Skip to content

Commit

Permalink
Fix csharp classlib template to point to net5.0 (#2318)
Browse files Browse the repository at this point in the history
All other classlibs use net5.0 by default, fixing this oversight.
  • Loading branch information
ViktorHofer committed Mar 14, 2020
1 parent 1d80ff0 commit bd8fc17
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>
<TargetFramework Condition="'$(TargetFrameworkOverride)' == ''">netstandard2.0</TargetFramework>
<TargetFramework Condition="'$(TargetFrameworkOverride)' == ''">net5.0</TargetFramework>
<TargetFramework Condition="'$(TargetFrameworkOverride)' != ''">TargetFrameworkOverride</TargetFramework>
<RootNamespace Condition="'$(name)' != '$(name{-VALUE-FORMS-}safe_namespace)'">Company.ClassLibrary1</RootNamespace>
<LangVersion Condition="'$(langVersion)' != ''">$(ProjectLanguageVersion)</LangVersion>
Expand Down

0 comments on commit bd8fc17

Please sign in to comment.