-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #104 from vladbarosan/fix-build
Update to autorest 2 and dotnet 2.0
- Loading branch information
Showing
14 changed files
with
68 additions
and
82 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
### How to install | ||
``` | ||
npm install -g [email protected].7 | ||
npm install -g [email protected].8 | ||
``` | ||
|
||
### Command Usage | ||
|
@@ -25,13 +25,13 @@ Options: | |
``` | ||
|
||
## Build dependencies | ||
- [Node](https://nodejs.org) (6.9.5 or higher) | ||
- [Node](https://nodejs.org) (7.10.0 or higher) | ||
- [Node Package Manager](https://www.npmjs.com/package/npm) | ||
- [.NET CLI tools](https://github.com/dotnet/cli#installers-and-binaries) build -004812 or later (after 02/14/2017) | ||
- [.NET CLI tools](https://github.com/dotnet/cli/releases) version 2.0.0 or higher | ||
> You want the **.NET Core SDK Binaries** for your platform <br> | ||
> | ||
> `dotnet --version ` <br> | ||
> ` 1.0.0-rc4-004769 ` <br> | ||
> ` 2.0.2 ` <br> | ||
## Build scripts | ||
### How to build | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<Project ToolsVersion="15.0"> | ||
<PropertyGroup> | ||
<TargetFramework>netstandard1.3</TargetFramework> | ||
<TargetFramework>netstandard2.0</TargetFramework> | ||
</PropertyGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,8 @@ | ||
<Project ToolsVersion="15.0"> | ||
<ItemGroup> | ||
<PackageReference Include="Microsoft.Extensions.DependencyModel" Version="1.1.0.0" /> | ||
<!-- <PackageReference Include="Microsoft.NETCore.App" Version="1.0.1" /> --> | ||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.0.0-preview-20161123-03" /> | ||
<PackageReference Include="xunit.runner.visualstudio" Version="2.2.0-beta4-build1194" /> | ||
<PackageReference Include="xunit" Version="2.2.0-beta4-build3444" /> | ||
<PackageReference Include="Microsoft.Extensions.DependencyModel" Version="1.1.2" /> | ||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.3.0" /> | ||
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.0" /> | ||
<PackageReference Include="xunit" Version="2.3.0" /> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<packages> | ||
<package id="Newtonsoft.Json" version="9.0.1" targetFramework="net45" /> | ||
<package id="YamlDotNet.Signed" version="3.8.0" targetFramework="net45" /> | ||
<package id="YamlDotNet.Signed" version="4.2.2" targetFramework="net45" /> | ||
</packages> |
Oops, something went wrong.