Skip to content
This repository has been archived by the owner on Apr 20, 2023. It is now read-only.

Commit

Permalink
Merge pull request #3223 from livarcocc/clean_up_after_rc3
Browse files Browse the repository at this point in the history
Clean up from the move to RC3 packages.
  • Loading branch information
eerhardt committed May 27, 2016
2 parents 0e60890 + 5d0aefe commit e9d3a09
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
1 change: 0 additions & 1 deletion NuGet.Config
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
<packageSources>
<!--To inherit the global NuGet package sources remove the <clear/> line below -->
<clear />
<add key="dotnet-core" value="https://dotnet.myget.org/F/dotnet-core" />
<add key="cli-deps" value="https://dotnet.myget.org/F/cli-deps/api/v3/index.json" />
<add key="api.nuget.org" value="https://api.nuget.org/v3/index.json" />
</packageSources>
Expand Down
3 changes: 0 additions & 3 deletions build_projects/dotnet-cli-build/build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,6 @@ else
$env:DOTNET_BUILD_SKIP_PACKAGING=0
}

Write-Host "Disabling crossgen for the CLI build. See issue - https://github.com/dotnet/cli/issues/3059"
$env:DISABLE_CROSSGEN=1

# Load Branch Info
cat "$RepoRoot\branchinfo.txt" | ForEach-Object {
if(!$_.StartsWith("#") -and ![String]::IsNullOrWhiteSpace($_)) {
Expand Down
7 changes: 6 additions & 1 deletion build_projects/shared-build-targets-utils/Utils/Crossgen.cs
Original file line number Diff line number Diff line change
Expand Up @@ -154,10 +154,15 @@ public void CrossgenDirectory(string sharedFxPath, string pathToAssemblies)

IList<string> crossgenArgs = new List<string> {
"-readytorun", "-in", file, "-out", tempPathName,
"-JITPath", GetLibCLRJitPathForVersion(),
"-platform_assemblies_paths", platformAssembliesPaths
};

if (CurrentPlatform.IsUnix)
{
crossgenArgs.Add("-JITPath");
crossgenArgs.Add(GetLibCLRJitPathForVersion());
}

ExecSilent(_crossGenPath, crossgenArgs, env);

File.Copy(tempPathName, file, overwrite: true);
Expand Down

0 comments on commit e9d3a09

Please sign in to comment.