Skip to content
This repository was archived by the owner on Jun 21, 2023. It is now read-only.

Commit 26874eb

Browse files
committed
Convert all projects to use .NET Framework 4.6
This is the version that Visual Studio is compatible with. Compiling for .NET Framework 4.6.1 risks referencing assemblies that aren't always available.
1 parent 9175b2f commit 26874eb

File tree

33 files changed

+43
-39
lines changed

33 files changed

+43
-39
lines changed

src/CredentialManagement/CredentialManagement.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>net461</TargetFramework>
3+
<TargetFramework>net46</TargetFramework>
44
<DebugType>full</DebugType>
55
<DebugSymbols>true</DebugSymbols>
66
</PropertyGroup>

src/GitHub.Api/GitHub.Api.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>net461</TargetFramework>
3+
<TargetFramework>net46</TargetFramework>
44
<DebugType>full</DebugType>
55
<DebugSymbols>true</DebugSymbols>
66
</PropertyGroup>

src/GitHub.App/GitHub.App.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>net461</TargetFramework>
3+
<TargetFramework>net46</TargetFramework>
44
<DebugType>full</DebugType>
55
<DebugSymbols>true</DebugSymbols>
66
</PropertyGroup>

src/GitHub.Exports.Reactive/GitHub.Exports.Reactive.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>net461</TargetFramework>
3+
<TargetFramework>net46</TargetFramework>
44
<RootNamespace>GitHub</RootNamespace>
55
<DebugType>full</DebugType>
66
<DebugSymbols>true</DebugSymbols>

src/GitHub.Exports/GitHub.Exports.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>net461</TargetFramework>
3+
<TargetFramework>net46</TargetFramework>
44
<RootNamespace>GitHub</RootNamespace>
55
<DebugType>full</DebugType>
66
<DebugSymbols>true</DebugSymbols>

src/GitHub.Extensions.Reactive/GitHub.Extensions.Reactive.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>net461</TargetFramework>
3+
<TargetFramework>net46</TargetFramework>
44
<RootNamespace>GitHub</RootNamespace>
55
<DebugType>full</DebugType>
66
<DebugSymbols>true</DebugSymbols>

src/GitHub.Extensions/GitHub.Extensions.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>net461</TargetFramework>
3+
<TargetFramework>net46</TargetFramework>
44
<RootNamespace>GitHub</RootNamespace>
55
<DebugType>full</DebugType>
66
<DebugSymbols>true</DebugSymbols>

src/GitHub.InlineReviews/GitHub.InlineReviews.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<RootNamespace>GitHub.InlineReviews</RootNamespace>
2424
<AssemblyName>GitHub.InlineReviews</AssemblyName>
2525
<LangVersion>7.3</LangVersion>
26-
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
26+
<TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
2727
<GeneratePkgDefFile>true</GeneratePkgDefFile>
2828
<IncludeAssemblyInVSIXContainer>true</IncludeAssemblyInVSIXContainer>
2929
<IncludeDebugSymbolsInVSIXContainer>true</IncludeDebugSymbolsInVSIXContainer>

src/GitHub.Logging/GitHub.Logging.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>net461</TargetFramework>
3+
<TargetFramework>net46</TargetFramework>
44
<RootNamespace>GitHub</RootNamespace>
55
<DebugType>full</DebugType>
66
<DebugSymbols>true</DebugSymbols>

src/GitHub.Resources/GitHub.Resources.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>net461</TargetFramework>
3+
<TargetFramework>net46</TargetFramework>
44
<RootNamespace>GitHub</RootNamespace>
55
</PropertyGroup>
66

0 commit comments

Comments
 (0)