-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Migrate dotnetcore to vs2017 tooling #1567
Changes from 32 commits
0259cf3
8d811e3
55b035e
7551ddf
40136ca
d69a5a2
3e89172
172b546
4ac05a9
800a53b
3cf1a44
0d2ee58
48a31b5
1443219
0ed0ea2
8108407
6d158fb
85da23c
d61573f
1e6ead8
674236e
b8cf445
872a37d
36c19b6
b9c89c5
b4a1c1e
6a30371
dc269eb
20f55f3
731bd69
618fd8c
a0c0fb1
beefc17
294dcee
466d8b9
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<Description>An IObservable based GitHub API client library for .NET using Reactive Extensions</Description> | ||
<AssemblyTitle>Octokit.Reactive</AssemblyTitle> | ||
<Authors>GitHub</Authors> | ||
<TargetFrameworks>netstandard1.1;net45</TargetFrameworks> | ||
<AssemblyName>Octokit.Reactive</AssemblyName> | ||
<PackageId>Octokit.Reactive</PackageId> | ||
<GenerateAssemblyTitleAttribute>false</GenerateAssemblyTitleAttribute> | ||
<GenerateAssemblyDescriptionAttribute>false</GenerateAssemblyDescriptionAttribute> | ||
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute> | ||
<GenerateAssemblyVersionAttribute>false</GenerateAssemblyVersionAttribute> | ||
<GenerateAssemblyFileVersionAttribute>false</GenerateAssemblyFileVersionAttribute> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<Compile Include="..\SolutionInfo.cs;..\Octokit\Helpers\Ensure.cs;..\Octokit\Helpers\Pagination.cs" /> | ||
<None Include="app.config" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\Octokit\Octokit.csproj" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="System.Reactive" Version="3.1.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition=" '$(TargetFramework)' == 'net45' "> | ||
<Reference Include="System" /> | ||
<Reference Include="Microsoft.CSharp" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<Description>Convention-based tests for Octokit</Description> | ||
<AssemblyTitle>Octokit.Tests.Conventions</AssemblyTitle> | ||
<Authors>GitHub</Authors> | ||
<TargetFramework>netcoreapp1.0</TargetFramework> | ||
<NoWarn>$(NoWarn);CS4014;CS1998</NoWarn> | ||
<AssemblyName>Octokit.Tests.Conventions</AssemblyName> | ||
<PackageId>Octokit.Tests.Conventions</PackageId> | ||
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles> | ||
<NetStandardImplicitPackageVersion>1.6.0</NetStandardImplicitPackageVersion> | ||
<RuntimeFrameworkVersion>1.0.4</RuntimeFrameworkVersion> | ||
<GenerateAssemblyTitleAttribute>false</GenerateAssemblyTitleAttribute> | ||
<GenerateAssemblyDescriptionAttribute>false</GenerateAssemblyDescriptionAttribute> | ||
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute> | ||
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute> | ||
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute> | ||
<GenerateAssemblyCopyrightAttribute>false</GenerateAssemblyCopyrightAttribute> | ||
<GenerateAssemblyVersionAttribute>false</GenerateAssemblyVersionAttribute> | ||
<GenerateAssemblyFileVersionAttribute>false</GenerateAssemblyFileVersionAttribute> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<Compile Include="..\Octokit.Tests\Helpers\AssertEx.cs" /> | ||
<None Include="app.config" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition=" '$(TargetFramework)' == 'netcoreapp1.0' "> | ||
<ProjectReference Include="..\Octokit\Octokit.csproj" /> | ||
<ProjectReference Include="..\Octokit.Reactive\Octokit.Reactive.csproj" /> | ||
<ProjectReference Include="..\Octokit.Tests\Octokit.Tests.csproj" /> | ||
</ItemGroup> | ||
|
||
<PropertyGroup Condition=" '$(TargetFramework)' == 'netcoreapp1.0' "> | ||
<DefineConstants>$(DefineConstants);NO_SERIALIZABLE;HAS_TYPEINFO</DefineConstants> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.0.0-preview-20170106-08" /> | ||
<PackageReference Include="xunit" Version="2.2.0-beta5-build3474" /> | ||
<PackageReference Include="xunit.runner.visualstudio" Version="2.2.0-beta5-build1225" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<Description>Integration tests for Octokit</Description> | ||
<AssemblyTitle>Octokit.Tests.Integration</AssemblyTitle> | ||
<Authors>GitHub</Authors> | ||
<TargetFramework>netcoreapp1.0</TargetFramework> | ||
<NoWarn>$(NoWarn);CS4014;CS1998</NoWarn> | ||
<AssemblyName>Octokit.Tests.Integration</AssemblyName> | ||
<PackageId>Octokit.Tests.Integration</PackageId> | ||
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles> | ||
<NetStandardImplicitPackageVersion>1.6.0</NetStandardImplicitPackageVersion> | ||
<RuntimeFrameworkVersion>1.0.4</RuntimeFrameworkVersion> | ||
<GenerateAssemblyTitleAttribute>false</GenerateAssemblyTitleAttribute> | ||
<GenerateAssemblyDescriptionAttribute>false</GenerateAssemblyDescriptionAttribute> | ||
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute> | ||
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute> | ||
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute> | ||
<GenerateAssemblyCopyrightAttribute>false</GenerateAssemblyCopyrightAttribute> | ||
<GenerateAssemblyVersionAttribute>false</GenerateAssemblyVersionAttribute> | ||
<GenerateAssemblyFileVersionAttribute>false</GenerateAssemblyFileVersionAttribute> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<Compile Include="..\Octokit.Tests\Helpers\AssertEx.cs" /> | ||
<EmbeddedResource Include="fixtures\hello-world.txt;fixtures\hello-world.zip" Exclude="bin\**;obj\**;**\*.xproj;packages\**;@(EmbeddedResource)" /> | ||
<None Include="app.config" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition=" '$(TargetFramework)' == 'netcoreapp1.0' "> | ||
<ProjectReference Include="..\Octokit\Octokit.csproj" /> | ||
<ProjectReference Include="..\Octokit.Reactive\Octokit.Reactive.csproj" /> | ||
<ProjectReference Include="..\Octokit.Tests\Octokit.Tests.csproj" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.0.0-preview-20170106-08" /> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same as above |
||
<PackageReference Include="xunit" Version="2.2.0-beta5-build3474" /> | ||
<PackageReference Include="xunit.runner.visualstudio" Version="2.2.0-beta5-build1225" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file was deleted.
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It seems there's a new, stable version of this package on NuGet. Any specific reason to use this pre-release one?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I just converted the project.json to csproj with VS2017 so I guess this is historic. Ill update it and see how we go!