forked from NuGet/NuGet.Client
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added AppVeyor validation build configuration
- Ordered .gitattributes settings for text files. - Normalized the line endings across source files. - Updated dotnet-test-xunit version to 1.0.0-rc2-173384-19. - Loosened test build result checks from testing `$?` to simply verifying the `$LASTEXITCODE`. - Re-wrote GlobalSuppressions.cs files in UTF8. - Fixed weird dependency of `System.Runtime.4.1.0/net46` by replacing it with framework assembly entry. - Fixed build warnings. - Added build status to the front repo page.
- Loading branch information
Showing
32 changed files
with
1,080 additions
and
1,024 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,10 @@ | |
|
||
------------- | ||
|
||
## Build Status | ||
|
||
[](https://ci.appveyor.com/project/NuGetTeam/nuget-client) | ||
|
||
# Open Source Code of Conduct | ||
|
||
This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [[email protected]](mailto:[email protected]) with any additional questions or comments. | ||
|
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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
version: 3.5.0-xprivate-{build} | ||
pull_requests: | ||
do_not_increment_build_number: true | ||
skip_tags: true | ||
clone_depth: 1 | ||
image: Visual Studio 2015 | ||
init: | ||
- git config --global core.autocrlf true | ||
install: | ||
- git submodule update --init | ||
build_script: | ||
- ps: .\build.ps1 -Configuration Release -ReleaseLabel xprivate -BuildNumber $env:APPVEYOR_BUILD_NUMBER -SkipTests -SkipILMerge | ||
test_script: | ||
- ps: >- | ||
. .\build\common.ps1 | ||
$TestErrors = @() | ||
Invoke-BuildStep 'Running NuGet.Core tests' { | ||
Test-CoreProjects -Configuration Release | ||
} -ev +TestErrors | ||
Invoke-BuildStep 'Running NuGet.Clients tests - Dev14 dependencies' { | ||
Test-ClientsProjects -Configuration Release -MSBuildVersion "14" | ||
} -ev +TestErrors | ||
if ($TestErrors) { | ||
$host.SetShouldExit(1) | ||
} | ||
deploy: off |
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
Binary file modified
BIN
-1.03 KB
(49%)
src/NuGet.Clients/PackageManagement.VisualStudio/GlobalSuppressions.cs
Binary file not shown.
2 changes: 1 addition & 1 deletion
2
src/NuGet.Clients/VsConsole/Console.Types/GlobalSuppressions.cs
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,67 +1,67 @@ | ||
{ | ||
"version": "3.5.0-*", | ||
"copyright": "Copyright .NET Foundation. All rights reserved.", | ||
"packOptions": { | ||
"licenseUrl": "https://raw.githubusercontent.com/NuGet/NuGet.Client/dev/LICENSE.txt", | ||
"projectUrl": "https://github.com/NuGet/NuGet.Client" | ||
}, | ||
"description": "NuGet 3 restore for dotnet CLI, DNX, and UWP", | ||
"buildOptions": { | ||
"emitEntryPoint": true, | ||
"warningsAsErrors": true, | ||
"allowUnsafe": true, | ||
"xmlDoc": true, | ||
"nowarn": [ | ||
"CS1591" | ||
], | ||
"compile": { | ||
"include": [ | ||
"../../../Shared/*.cs" | ||
] | ||
} | ||
}, | ||
"dependencies": { | ||
"System.Runtime.InteropServices.RuntimeInformation": "4.0.0", | ||
"Microsoft.Extensions.CommandLineUtils.Sources": { | ||
"version": "1.0.0-*", | ||
"type": "build" | ||
}, | ||
"NuGet.Commands": { | ||
"target": "project" | ||
}, | ||
"System.Runtime.Serialization.Primitives": "4.1.1" | ||
}, | ||
"commands": { | ||
"NuGet.CommandLine.XPlat": "NuGet.CommandLine.XPlat" | ||
}, | ||
"frameworks": { | ||
"net46": { | ||
"dependencies": { | ||
"System.Runtime": "4.1.0" | ||
}, | ||
"buildOptions": { | ||
"define": [ | ||
"IS_DESKTOP" | ||
] | ||
} | ||
}, | ||
"netcoreapp1.0": { | ||
"imports": [ | ||
"netstandardapp1.5", | ||
"dnxcore50", | ||
"portable-net45+win8" | ||
], | ||
"dependencies": { | ||
"Microsoft.NETCore.App": { | ||
"type": "platform", | ||
"version": "1.0.0" | ||
} | ||
}, | ||
"buildOptions": { | ||
"define": [ | ||
"IS_CORECLR" | ||
] | ||
} | ||
} | ||
} | ||
} | ||
{ | ||
"version": "3.5.0-*", | ||
"copyright": "Copyright .NET Foundation. All rights reserved.", | ||
"packOptions": { | ||
"licenseUrl": "https://raw.githubusercontent.com/NuGet/NuGet.Client/dev/LICENSE.txt", | ||
"projectUrl": "https://github.com/NuGet/NuGet.Client" | ||
}, | ||
"description": "NuGet 3 restore for dotnet CLI, DNX, and UWP", | ||
"buildOptions": { | ||
"emitEntryPoint": true, | ||
"warningsAsErrors": true, | ||
"allowUnsafe": true, | ||
"xmlDoc": true, | ||
"nowarn": [ | ||
"CS1591" | ||
], | ||
"compile": { | ||
"include": [ | ||
"../../../Shared/*.cs" | ||
] | ||
} | ||
}, | ||
"dependencies": { | ||
"System.Runtime.InteropServices.RuntimeInformation": "4.0.0", | ||
"Microsoft.Extensions.CommandLineUtils.Sources": { | ||
"version": "1.0.0-*", | ||
"type": "build" | ||
}, | ||
"NuGet.Commands": { | ||
"target": "project" | ||
}, | ||
"System.Runtime.Serialization.Primitives": "4.1.1" | ||
}, | ||
"commands": { | ||
"NuGet.CommandLine.XPlat": "NuGet.CommandLine.XPlat" | ||
}, | ||
"frameworks": { | ||
"net46": { | ||
"frameworkAssemblies": { | ||
"System.Runtime": "" | ||
}, | ||
"buildOptions": { | ||
"define": [ | ||
"IS_DESKTOP" | ||
] | ||
} | ||
}, | ||
"netcoreapp1.0": { | ||
"imports": [ | ||
"netstandardapp1.5", | ||
"dnxcore50", | ||
"portable-net45+win8" | ||
], | ||
"dependencies": { | ||
"Microsoft.NETCore.App": { | ||
"type": "platform", | ||
"version": "1.0.0" | ||
} | ||
}, | ||
"buildOptions": { | ||
"define": [ | ||
"IS_CORECLR" | ||
] | ||
} | ||
} | ||
} | ||
} |
Binary file modified
BIN
-889 Bytes
(49%)
src/NuGet.Core/NuGet.Packaging.Core/Properties/GlobalSuppressions.cs
Binary file not shown.
Binary file modified
BIN
-544 Bytes
(49%)
src/NuGet.Core/NuGet.Packaging/Properties/GlobalSuppressions.cs
Binary file not shown.
Oops, something went wrong.