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

Merge future to master #917

Merged
merged 42 commits into from
Feb 27, 2017
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
b9b16f6
Bump future's minor version
nguerrera Dec 7, 2016
d4b6277
Merge pull request #467 from nguerrera/bump-version
nguerrera Dec 7, 2016
3deebc0
Merge remote-tracking branch 'refs/remotes/upstream/master'
eerhardt Jan 9, 2017
076054b
Update NuGet to include new TFMs for .NET Core 2.0.
eerhardt Jan 10, 2017
5352d82
Merge pull request #617 from eerhardt/UpdateNuGet
eerhardt Jan 10, 2017
6e119bc
Compose cache
ramarag Dec 30, 2016
6043430
Integration Test for ComposeCache
ramarag Jan 18, 2017
dc0b6ea
Merge pull request #591 from ramarag/dotnet-cache
ramarag Jan 21, 2017
a07294d
Adding a FilterProfile option to filter out the closure of specified …
ramarag Jan 14, 2017
c11f9f7
Integration test for publish filter profile
ramarag Jan 19, 2017
2d2957d
Merge pull request #685 from ramarag/dotnet-filter
ramarag Jan 27, 2017
00a3037
Merge master into future
dsplaisted Jan 31, 2017
73e5700
Fixed the download scripts to consume cli rel/1.0.0 branch
333fred Jan 24, 2017
ac9f638
Merge pull request #770 from ramarag/point_fix_future
nguerrera Feb 1, 2017
feb7131
Fix Global user path
ramarag Jan 30, 2017
89dd925
Fix test for new runtimeconfig.json property.
eerhardt Feb 1, 2017
146a103
Refactoring Crossgen and enabling parallel execution of Crossgen
ramarag Jan 31, 2017
9ea4f2e
Merge pull request #761 from ramarag/parallelize_Cache
ramarag Feb 2, 2017
306c5ed
Creating an Intermediate directory for cache to work in
ramarag Feb 3, 2017
a9e9c84
Merge pull request #800 from ramarag/create_working_dir_for_cache
ramarag Feb 3, 2017
2c87d5e
Merge branch 'master' into merge-master
nguerrera Feb 3, 2017
542d3e9
Merge branch 'future' into merge-master
nguerrera Feb 3, 2017
756966e
Set VS Install location environment variables in netci.groovy
dsplaisted Jan 26, 2017
6929f00
Merge pull request #808 from ramarag/future_is_2017
ramarag Feb 3, 2017
9e76a59
Merge remote-tracking branch 'upstream/future' into merge-master
ramarag Feb 3, 2017
8a3bb94
Try fixing groovy script
dsplaisted Jan 26, 2017
19641cb
Don't set environment variables for VS SDK during CI runs
dsplaisted Jan 26, 2017
1a1c295
Use Dev15 CI machines for Windows builds
dsplaisted Jan 27, 2017
fc6c001
Build with VS 15 dev tools
dsplaisted Jan 26, 2017
acf87a3
Merge pull request #812 from ramarag/fututre_shoulbe_2017
ramarag Feb 4, 2017
d70eec0
Merge pull request #767 from dsplaisted/merge-master
ramarag Feb 4, 2017
437e2c0
Remove Default FX_Version, as we let it to default to CLI in usage
ramarag Feb 7, 2017
3c65076
Merge pull request #827 from ramarag/fix_FX_version
ramarag Feb 7, 2017
b3ee71d
Filter out System files during caching step
ramarag Feb 9, 2017
9cbb171
Merge pull request #837 from ramarag/remove_system_files
ramarag Feb 9, 2017
f5c65ef
Merge remote-tracking branch 'refs/remotes/upstream/master'
eerhardt Feb 10, 2017
1f2a62b
Merge pull request #857 from eerhardt/merge-master
eerhardt Feb 10, 2017
5adcbb6
Merge pull request #882 from dotnet/master
srivatsn Feb 17, 2017
7b03b20
Merge branch 'master' into merge-master
nguerrera Feb 24, 2017
4878186
Fix test expectation to match project change coming from master
nguerrera Feb 24, 2017
f1590d1
fixing iteration of publish filter list
ramarag Feb 24, 2017
44c528d
Merge pull request #913 from nguerrera/merge-master
nguerrera Feb 25, 2017
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
2 changes: 1 addition & 1 deletion build/DependencyVersions.props
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<MsBuildPackagesVersion>0.1.0-preview-00028-160627</MsBuildPackagesVersion>
<CoreSetupVersion>1.0.1-beta-000933</CoreSetupVersion>
<NuGetVersion>4.0.0-rc3</NuGetVersion>
<NuGetVersion>4.0.0-rc3-2193</NuGetVersion>
<RoslynVersion>2.0.0-beta6-60922-08</RoslynVersion>
</PropertyGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public DependencyContextBuilder(SingleProjectInfo mainProjectInfo, ProjectContex
_projectContext = projectContext;

// This resolver is only used for building file names, so that base path is not required.
_versionFolderPathResolver = new VersionFolderPathResolver(path: null);
_versionFolderPathResolver = new VersionFolderPathResolver(rootPath: null);
}

public DependencyContextBuilder WithFrameworkReferences(IEnumerable<ReferenceInfo> frameworkReferences)
Expand Down