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

Commit 450343d

Browse files
authored
Merge branch 'master' into fixes/1688-initialize-free-threaded
2 parents d29ce2f + fec41ac commit 450343d

File tree

30 files changed

+39
-112
lines changed

30 files changed

+39
-112
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Beta releases will have `(beta)` in their title in the gallery, following the ve
3535

3636
## Build requirements
3737

38-
* Visual Studio 2015+
38+
* Visual Studio 2017 (15.7.4)+
3939
* Visual Studio SDK
4040

4141
## Build
@@ -50,13 +50,13 @@ git submodule deinit script
5050
git submodule update
5151
```
5252

53-
Open the `GitHubVS.sln` solution with Visual Studio 2015+.
53+
Open the `GitHubVS.sln` solution with Visual Studio 2017+.
5454
To be able to use the GitHub API, you'll need to:
5555

5656
- [Register a new developer application](https://github.com/settings/developers) in your profile.
5757
- Open [src/GitHub.Api/ApiClientConfiguration_User.cs](src/GitHub.Api/ApiClientConfiguration_User.cs) and fill out the clientId/clientSecret fields for your application. **Note this has recently changed location, so you may need to re-do this**
5858

59-
Build using Visual Studio 2015 or:
59+
Build using Visual Studio 2017 or:
6060

6161
```txt
6262
build.cmd
@@ -95,7 +95,7 @@ Visit the [Contributor Guidelines](CONTRIBUTING.md) for details on how to contri
9595

9696
## Copyright
9797

98-
Copyright 2015 - 2017 GitHub, Inc.
98+
Copyright 2015 - 2018 GitHub, Inc.
9999

100100
Licensed under the [MIT License](LICENSE.md)
101101

appveyor.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
os: Visual Studio 2017
12
version: '2.5.4.{build}'
23
skip_tags: true
34
install:

scripts/modules.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,8 @@ New-Module -ScriptBlock {
9999

100100
New-Module -ScriptBlock {
101101
function Find-MSBuild() {
102-
if (Test-Path "C:\Program Files (x86)\MSBuild\14.0\Bin\MSBuild.exe") {
103-
$msbuild = "C:\Program Files (x86)\MSBuild\14.0\Bin\MSBuild.exe"
102+
if (Test-Path "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\MSBuild\15.0\bin\MSBuild.exe") {
103+
$msbuild = "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\MSBuild\15.0\bin\MSBuild.exe"
104104
}
105105
elseif (Test-Path "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\MSBuild\15.0\Bin\MSBuild.exe") {
106106
$msbuild = "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\MSBuild\15.0\Bin\MSBuild.exe"

src/CredentialManagement/CredentialManagement.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<AppDesignerFolder>Properties</AppDesignerFolder>
1010
<RootNamespace>CredentialManagement</RootNamespace>
1111
<AssemblyName>GitHub.CredentialManagement</AssemblyName>
12-
<LangVersion>6</LangVersion>
12+
<LangVersion>7.3</LangVersion>
1313
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
1414
<FileAlignment>512</FileAlignment>
1515
<CodeAnalysisRuleSet>..\common\GitHubVS.ruleset</CodeAnalysisRuleSet>

src/GitHub.Api/GitHub.Api.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<AppDesignerFolder>Properties</AppDesignerFolder>
1010
<RootNamespace>GitHub.Api</RootNamespace>
1111
<AssemblyName>GitHub.Api</AssemblyName>
12-
<LangVersion>6</LangVersion>
12+
<LangVersion>7.3</LangVersion>
1313
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
1414
<FileAlignment>512</FileAlignment>
1515
<CodeAnalysisRuleSet>..\common\GitHubVS.ruleset</CodeAnalysisRuleSet>

src/GitHub.App/GitHub.App.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<AppDesignerFolder>Properties</AppDesignerFolder>
1212
<RootNamespace>GitHub.App</RootNamespace>
1313
<AssemblyName>GitHub.App</AssemblyName>
14-
<LangVersion>6</LangVersion>
14+
<LangVersion>7.3</LangVersion>
1515
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
1616
<FileAlignment>512</FileAlignment>
1717
<CodeAnalysisRuleSet>..\common\GitHubVS.ruleset</CodeAnalysisRuleSet>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<AppDesignerFolder>Properties</AppDesignerFolder>
1111
<RootNamespace>GitHub</RootNamespace>
1212
<AssemblyName>GitHub.Exports.Reactive</AssemblyName>
13-
<LangVersion>6</LangVersion>
13+
<LangVersion>7.3</LangVersion>
1414
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
1515
<FileAlignment>512</FileAlignment>
1616
<CodeAnalysisRuleSet>..\common\GitHubVS.ruleset</CodeAnalysisRuleSet>

src/GitHub.Exports/GitHub.Exports.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<AppDesignerFolder>Properties</AppDesignerFolder>
1111
<RootNamespace>GitHub</RootNamespace>
1212
<AssemblyName>GitHub.Exports</AssemblyName>
13-
<LangVersion>6</LangVersion>
13+
<LangVersion>7.3</LangVersion>
1414
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
1515
<FileAlignment>512</FileAlignment>
1616
<CodeAnalysisRuleSet>..\common\GitHubVS.ruleset</CodeAnalysisRuleSet>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<AppDesignerFolder>Properties</AppDesignerFolder>
1010
<RootNamespace>GitHub.Extensions.Reactive</RootNamespace>
1111
<AssemblyName>GitHub.Extensions.Reactive</AssemblyName>
12-
<LangVersion>6</LangVersion>
12+
<LangVersion>7.3</LangVersion>
1313
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
1414
<FileAlignment>512</FileAlignment>
1515
<CodeAnalysisRuleSet>..\common\GitHubVS.ruleset</CodeAnalysisRuleSet>

src/GitHub.Extensions/GitHub.Extensions.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<AppDesignerFolder>Properties</AppDesignerFolder>
1010
<RootNamespace>GitHub.Extensions</RootNamespace>
1111
<AssemblyName>GitHub.Extensions</AssemblyName>
12-
<LangVersion>6</LangVersion>
12+
<LangVersion>7.3</LangVersion>
1313
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
1414
<FileAlignment>512</FileAlignment>
1515
<CodeAnalysisRuleSet>..\common\GitHubVS.ruleset</CodeAnalysisRuleSet>

0 commit comments

Comments
 (0)