-
Notifications
You must be signed in to change notification settings - Fork 793
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
convert FCS MSBuild references to a NuGet package (#6439)
- Loading branch information
1 parent
1e79be6
commit e2ce51e
Showing
12 changed files
with
43 additions
and
40 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
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 @@ | ||
*.dll |
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,10 @@ | ||
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net45</TargetFramework> | ||
<NuspecFile>MSBuild.v12.0.nuspec</NuspecFile> | ||
</PropertyGroup> | ||
|
||
<Target Name="Build" /> | ||
|
||
</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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?xml version="1.0"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd"> | ||
<metadata> | ||
<id>FSharp.Compiler.Service.MSBuild.v12.0</id> | ||
<version>1.0</version> | ||
<authors>Microsoft and F# Software Foundation</authors> | ||
<description>MSBuild.v12.0 dependencies for fcs.</description> | ||
<dependencies> | ||
<group targetFramework="net45"> | ||
</group> | ||
</dependencies> | ||
</metadata> | ||
<files> | ||
<file src="Microsoft.Build.dll" target="lib\net45" /> | ||
<file src="Microsoft.Build.Engine.dll" target="lib\net45" /> | ||
<file src="Microsoft.Build.Framework.dll" target="lib\net45" /> | ||
<file src="Microsoft.Build.Tasks.v12.0.dll" target="lib\net45" /> | ||
<file src="Microsoft.Build.Utilities.v12.0.dll" target="lib\net45" /> | ||
</files> | ||
</package> |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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,9 @@ | ||
The MSBuild.12.0 dependencies have been converted to a NuGet package. | ||
|
||
To create an updated version of the package: | ||
|
||
1. Copy the appropriate `Microsoft.Build.*.dll` files to this directory. | ||
2. Update the `<version>` element of `MSBuild.v12.0.nuspec`. | ||
3. Run `msbuild MSBuild.v12.0.csproj /t:Pack` | ||
4. Upload `<repo-root>\artifacts\bin\fcs\FSharp.Compiler.Service.MSBuild.v12.0.*.nupkg` to the MyGet feed at | ||
`https://dotnet.myget.org/F/fsharp/api/v3/index.json` |