Skip to content
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

Update MSBuild packaging #705

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
6b7ca1d
Make build script download and unzip Microsoft.Build.Windows directly
DustinCampbell Dec 12, 2016
f45b408
Clean up build.cake a bit
DustinCampbell Dec 12, 2016
73b0a82
Copy msbuild and targets to folder under OmniSharp during publishing
DustinCampbell Dec 12, 2016
6b57e59
Use a few Cake primitives
DustinCampbell Dec 12, 2016
e32fd92
Set MSBUILD_EXE_PATH environment variable in OmniSharp during MSBuild…
DustinCampbell Dec 12, 2016
ea783cc
Install various SDK packages and copy MSBuild+SDKs on publish
DustinCampbell Dec 12, 2016
c22949c
Remove Microsoft.CSharp.Core.targets now that we copy it from the Mic…
DustinCampbell Dec 12, 2016
5fd2bec
Properly set MSBuild_EXE_PATH and MSBuildSDKsPath environment variables
DustinCampbell Dec 12, 2016
969003b
Set MSBuildExtensionsPath correctly now that MSBuild is moved to its …
DustinCampbell Dec 13, 2016
eb78bd2
Remove dead code from nuget.cake
DustinCampbell Dec 13, 2016
4d5caed
On OSX/Linux, acquire special build of Mono MSBuild for net46 builds
DustinCampbell Dec 13, 2016
9d2617f
On OSX/Linux, copy over MSBuild libraries with special Mono MSBuild b…
DustinCampbell Dec 13, 2016
5071d3c
Delete a handful of binaries that aren't necessary (and sometimes har…
DustinCampbell Dec 13, 2016
b4f6d63
Expose public static method on MSBuildProjectSystem to set MSBuild en…
DustinCampbell Dec 13, 2016
15b8d85
Use .msbuild-* folder in MSBuild tests
DustinCampbell Dec 13, 2016
f1c9fde
Add TestLogger utility for logging output to xUnit
DustinCampbell Dec 14, 2016
386d3e3
Skip unit test
DustinCampbell Dec 14, 2016
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ TestResults/
.nuget/
*.sln.ide/
_ReSharper.*/
packages/
packages/**/
artifacts/
PublishProfiles/
*.user
Expand All @@ -31,6 +31,7 @@ buildlog
*.lock.json
/omnisharp*.tar.gz
scripts/Omnisharp*
.msbuild-*/

# NuGet
*.nuget.targets
Expand Down
152 changes: 0 additions & 152 deletions Microsoft.CSharp.Core.targets

This file was deleted.

2 changes: 2 additions & 0 deletions NuGet.Config
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<clear />
<add key="dotnet-core" value="https://dotnet.myget.org/F/dotnet-core/api/v3/index.json" />
<add key="cli-deps" value="https://dotnet.myget.org/F/cli-deps/api/v3/index.json" />
<add key="NuGet" value="https://api.nuget.org/v3/index.json" />
</packageSources>
Expand Down
Loading