Skip to content
This repository was archived by the owner on Aug 29, 2020. It is now read-only.

Commit 269bab3

Browse files
committed
bump refs
1 parent 9b388d2 commit 269bab3

File tree

6 files changed

+17
-101
lines changed

6 files changed

+17
-101
lines changed

Compiler/Fody.targets

Lines changed: 0 additions & 86 deletions
This file was deleted.

Compiler/ReleaseNotesCompiler.csproj

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
<AssemblyName>ReleaseNotesCompiler</AssemblyName>
1212
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
1313
<FileAlignment>512</FileAlignment>
14-
<FodyPath>..\packages\Fody.1.20.0.0</FodyPath>
1514
</PropertyGroup>
1615
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1716
<DebugSymbols>true</DebugSymbols>
@@ -31,12 +30,13 @@
3130
<WarningLevel>4</WarningLevel>
3231
</PropertyGroup>
3332
<ItemGroup>
34-
<Reference Include="Octokit, Version=0.1.8.0, Culture=neutral, processorArchitecture=MSIL">
33+
<Reference Include="Octokit, Version=0.2.2.0, Culture=neutral, processorArchitecture=MSIL">
3534
<SpecificVersion>False</SpecificVersion>
36-
<HintPath>..\packages\Octokit.0.1.8\lib\net45\Octokit.dll</HintPath>
35+
<HintPath>..\packages\Octokit.0.2.2\lib\net45\Octokit.dll</HintPath>
3736
</Reference>
3837
<Reference Include="System" />
3938
<Reference Include="System.Core" />
39+
<Reference Include="System.Net.Http" />
4040
<Reference Include="System.Xml.Linq" />
4141
<Reference Include="System.Data.DataSetExtensions" />
4242
<Reference Include="Microsoft.CSharp" />
@@ -51,12 +51,17 @@
5151
<Compile Include="ReleaseUpdateRequired.cs" />
5252
</ItemGroup>
5353
<ItemGroup>
54-
<None Include="Fody.targets" />
5554
<None Include="packages.config" />
5655
</ItemGroup>
5756
<ItemGroup>
5857
<Content Include="FodyWeavers.xml" />
5958
</ItemGroup>
6059
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
61-
<Import Project="Fody.targets" />
60+
<Import Project="..\packages\Fody.1.22.1\build\Fody.targets" Condition="Exists('..\packages\Fody.1.22.1\build\Fody.targets')" />
61+
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
62+
<PropertyGroup>
63+
<ErrorText>This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
64+
</PropertyGroup>
65+
<Error Condition="!Exists('..\packages\Fody.1.22.1\build\Fody.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Fody.1.22.1\build\Fody.targets'))" />
66+
</Target>
6267
</Project>

Compiler/packages.config

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="Caseless.Fody" version="1.3.1.0" targetFramework="net45" developmentDependency="true" />
4-
<package id="Fody" version="1.20.0.0" targetFramework="net45" developmentDependency="true" />
5-
<package id="Octokit" version="0.1.8" targetFramework="net45" />
3+
<package id="Caseless.Fody" version="1.3.2.0" targetFramework="net45" developmentDependency="true" />
4+
<package id="Fody" version="1.22.1" targetFramework="net45" developmentDependency="true" />
5+
<package id="Octokit" version="0.2.2" targetFramework="net45" />
66
</packages>

Tests/ClientBuilder.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
namespace ReleaseNotesCompiler.Tests
22
{
3-
using System.Net.Http.Headers;
43
using Octokit;
54
using Octokit.Internal;
65

@@ -19,9 +18,7 @@ public static GitHubClient Build()
1918
httpClient,
2019
new SimpleJsonSerializer());
2120

22-
var client = new GitHubClient(connection);
23-
24-
return client;
21+
return new GitHubClient(connection);
2522
}
2623
}
2724
}

Tests/ReleaseNotesCompiler.Tests.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@
3333
<Reference Include="nunit.framework">
3434
<HintPath>..\packages\NUnit.2.6.3\lib\nunit.framework.dll</HintPath>
3535
</Reference>
36-
<Reference Include="Octokit, Version=0.1.8.0, Culture=neutral, processorArchitecture=MSIL">
36+
<Reference Include="Octokit, Version=0.2.2.0, Culture=neutral, processorArchitecture=MSIL">
3737
<SpecificVersion>False</SpecificVersion>
38-
<HintPath>..\packages\Octokit.0.1.8\lib\net45\Octokit.dll</HintPath>
38+
<HintPath>..\packages\Octokit.0.2.2\lib\net45\Octokit.dll</HintPath>
3939
</Reference>
4040
<Reference Include="System" />
4141
<Reference Include="System.Core" />

Tests/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
33
<package id="NUnit" version="2.6.3" targetFramework="net45" />
4-
<package id="Octokit" version="0.1.8" targetFramework="net45" />
4+
<package id="Octokit" version="0.2.2" targetFramework="net45" />
55
</packages>

0 commit comments

Comments
 (0)