Skip to content

Commit

Permalink
⁙ Target .net5 natively too
Browse files Browse the repository at this point in the history
This should allow the tool to run on environments that only have net5 installed.

Fixes #50
  • Loading branch information
kzu committed Dec 8, 2020
1 parent f4dfc21 commit a552ffb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/VisualStudio.Tests/VisualStudio.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netcoreapp2.1;netcoreapp3.1</TargetFrameworks>
<TargetFrameworks>netcoreapp2.1;netcoreapp3.1;net5.0</TargetFrameworks>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/VisualStudio/VisualStudio.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Description>A global tool for managing Visual Studio installations</Description>

<OutputType>Exe</OutputType>
<TargetFrameworks>netcoreapp2.1;netcoreapp3.1</TargetFrameworks>
<TargetFrameworks>netcoreapp2.1;netcoreapp3.1;net5.0</TargetFrameworks>

<AssemblyName>vs</AssemblyName>
<RootNamespace>VisualStudio</RootNamespace>
Expand Down

0 comments on commit a552ffb

Please sign in to comment.