Skip to content

Commit fa7afa5

Browse files
authored
update to Octokit 3 (#481)
1 parent 90a16c4 commit fa7afa5

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

src/Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<Project>
33
<PropertyGroup>
44
<NoWarn>CS1591</NoWarn>
5-
<Version>1.0.0</Version>
5+
<Version>1.1.0</Version>
66
<AssemblyVersion>1.0.0</AssemblyVersion>
77
<Description>A tool to help synchronizing specific files and folders across GitHub hosted repositories.</Description>
88
<PackageTags>GitHub</PackageTags>

src/GitHubSync.Tool/GitHubSync.Tool.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</PropertyGroup>
1010
<ItemGroup>
1111
<Compile Include="..\GitHubSync\AssemblyInfo.cs" Link="AssemblyInfo.cs" />
12-
<PackageReference Include="YamlDotNet" Version="12.0.0" />
12+
<PackageReference Include="YamlDotNet" Version="12.0.2" />
1313
<PackageReference Include="CommandLineParser" Version="2.9.1" />
1414
<ProjectReference Include="..\GitHubSync\GitHubSync.csproj" />
1515
<PackageReference Include="ProjectDefaults" Version="1.0.80" PrivateAssets="all" />

src/GitHubSync/GitHubSync.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
<ItemGroup>
99
<PackageReference Include="ConfigureAwait.Fody" Version="3.3.1" PrivateAssets="All" />
1010
<PackageReference Include="LibGit2Sharp" Version="0.26.2" />
11-
<PackageReference Include="Fody" Version="6.6.3" PrivateAssets="all" />
12-
<PackageReference Include="Octokit" Version="2.0.1" />
11+
<PackageReference Include="Fody" Version="6.6.4" PrivateAssets="all" />
12+
<PackageReference Include="Octokit" Version="4.0.0" />
1313
<PackageReference Include="ProjectDefaults" Version="1.0.80" PrivateAssets="all" />
1414
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" Condition="$(Configuration) == 'Release'" />
1515
</ItemGroup>

src/Tests/Tests.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@
88
<Content Include="*.yaml">
99
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
1010
</Content>
11-
<PackageReference Include="Verify.Xunit" Version="18.0.0-beta.20" />
12-
<PackageReference Include="XunitContext" Version="3.2.3" />
13-
<PackageReference Include="Octokit" Version="2.0.1" />
11+
<PackageReference Include="Verify.Xunit" Version="18.0.0-beta.30" />
12+
<PackageReference Include="XunitContext" Version="3.2.4" />
13+
<PackageReference Include="Octokit" Version="4.0.0" />
1414
<PackageReference Include="Xunit" Version="2.4.2" />
1515
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5" PrivateAssets="all" />
16-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.3.1" />
16+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.3.2" />
1717
<PackageReference Include="MarkdownSnippets.MsBuild" Version="24.5.0" PrivateAssets="all" />
1818
<ProjectReference Include="..\GitHubSync.Tool\GitHubSync.Tool.csproj" />
1919
<ProjectReference Include="..\GitHubSync\GitHubSync.csproj" />

src/appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ build_script:
77
Invoke-WebRequest "https://dot.net/v1/dotnet-install.ps1" -OutFile "./dotnet-install.ps1"
88
./dotnet-install.ps1 -JSonFile src/global.json -Architecture x64 -InstallDir 'C:\Program Files\dotnet'
99
- dotnet build src --configuration Release --nologo
10-
- dotnet test src --configuration Release --no-build --no-restore --nologo
10+
- dotnet test src --configuration Release --no-build --no-restore --nologo --filter Category!=Local
1111
test: off
1212
on_failure:
1313
- ps: Get-ChildItem *.received.* -recurse | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name }

0 commit comments

Comments
 (0)