Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade to net6.0 to prevent dependency issues after upgrading MSBuild.Locator #42

Merged
merged 3 commits into from Mar 4, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/dotnet.yml
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 5.0.x
dotnet-version: 6.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
Expand Down
1 change: 1 addition & 0 deletions DocsPortingTool.sln
Expand Up @@ -11,6 +11,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
ProjectSection(SolutionItems) = preProject
.gitignore = .gitignore
BackportInstructions.md = BackportInstructions.md
.github\workflows\dotnet.yml = .github\workflows\dotnet.yml
install-as-tool.ps1 = install-as-tool.ps1
README.md = README.md
EndProjectSection
Expand Down
2 changes: 1 addition & 1 deletion Libraries/Libraries.csproj
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFramework>net5.0</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
<Company>Microsoft</Company>
<Authors>carlossanlop</Authors>
<Nullable>enable</Nullable>
Expand Down
2 changes: 1 addition & 1 deletion Program/DocsPortingTool.csproj
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
<StartupObject>DocsPortingTool.DocsPortingTool</StartupObject>
<Company>Microsoft</Company>
<Authors>carlossanlop</Authors>
Expand Down
2 changes: 1 addition & 1 deletion Tests/Tests.csproj
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
<Company>Microsoft</Company>
<Authors>carlossanlop</Authors>
<IsPackable>false</IsPackable>
Expand Down