Skip to content

Commit a552ffb

Browse files
committed
⁙ Target .net5 natively too
This should allow the tool to run on environments that only have net5 installed. Fixes #50
1 parent f4dfc21 commit a552ffb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/VisualStudio.Tests/VisualStudio.Tests.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>netcoreapp2.1;netcoreapp3.1</TargetFrameworks>
4+
<TargetFrameworks>netcoreapp2.1;netcoreapp3.1;net5.0</TargetFrameworks>
55
</PropertyGroup>
66

77
<ItemGroup>

src/VisualStudio/VisualStudio.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<Description>A global tool for managing Visual Studio installations</Description>
55

66
<OutputType>Exe</OutputType>
7-
<TargetFrameworks>netcoreapp2.1;netcoreapp3.1</TargetFrameworks>
7+
<TargetFrameworks>netcoreapp2.1;netcoreapp3.1;net5.0</TargetFrameworks>
88

99
<AssemblyName>vs</AssemblyName>
1010
<RootNamespace>VisualStudio</RootNamespace>

0 commit comments

Comments
 (0)