-
Notifications
You must be signed in to change notification settings - Fork 585
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add coreclr compatible mono.cecil (jbevain/cecil#269), make fake core…
… run with net46 and compile for netcoreapp1.0
- Loading branch information
Showing
22 changed files
with
15,279 additions
and
40 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file added
BIN
+6.45 MB
lib/nupgks/FSharp.Compiler.Service.netcore.1.0.0-alpha-00001.symbols.nupkg
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
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,22 @@ | ||
/// New Command line interface for FAKE that utilises Argu. | ||
[<RequireQualifiedAccessAttribute>] | ||
module Cli | ||
|
||
open System | ||
open CommandLine | ||
|
||
[<Verb("run", HelpText = "Run the given FAKE script.")>] | ||
type RunOptions = { | ||
[<Option(Separator=',', Required = false, HelpText = "Overwrite some environment variables. Use env1:val1,env2:val2")>] environmentVariables : seq<string>; | ||
[<Option(HelpText = "Be more verbose in the output (legacy 'PrintDetails' or -pd).")>] verbose : bool; | ||
[<Option(HelpText = "Use the given string as arguments for FSI. Make sure to escape properly.")>] fsiArgs : string; | ||
[<Option(HelpText = "Pauses FAKE with a Debugger.Break() near the start (legacy 'Break' or -br).")>] debugScript : bool; | ||
[<Option(HelpText = "Runs only the specified target and not the dependencies.")>] singleTarget : bool; | ||
[<Option(HelpText = "Disables caching of compiled script")>] noCache : bool; | ||
[<Value(0, Required = false, MetaName="script", HelpText = "The build script to run, defaults to build.fsx.")>] script : string option; | ||
[<Value(1, Required = false, MetaName="target", HelpText = "The the target to run, defaults to the target defined in the build script.")>] target : string option; | ||
} | ||
[<Verb("version", HelpText = "print the current version.")>] | ||
type VersionOptions = { | ||
[<Option(HelpText = "Be more verbose in the output (legacy 'PrintDetails' or -pd).")>] verbose : bool; | ||
} |
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,19 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup> | ||
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">14.0</VisualStudioVersion> | ||
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath> | ||
</PropertyGroup> | ||
<Import Project="$(VSToolsPath)\DNX\Microsoft.DNX.Props" Condition="'$(VSToolsPath)' != ''" /> | ||
<PropertyGroup Label="Globals"> | ||
<ProjectGuid>9a05cdd6-654c-4df1-91ca-6da9fdf7e7a7</ProjectGuid> | ||
<RootNamespace>Fake.netcore</RootNamespace> | ||
<BaseIntermediateOutputPath Condition="'$(BaseIntermediateOutputPath)'=='' ">..\artifacts\obj\$(MSBuildProjectName)</BaseIntermediateOutputPath> | ||
<OutputPath Condition="'$(OutputPath)'=='' ">..\artifacts\bin\$(MSBuildProjectName)\</OutputPath> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<SchemaVersion>2.0</SchemaVersion> | ||
</PropertyGroup> | ||
<Import Project="$(VSToolsPath)\DNX\Microsoft.DNX.targets" Condition="'$(VSToolsPath)' != ''" /> | ||
</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,14 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<configuration> | ||
<packageSources> | ||
<!--To inherit the global NuGet package sources remove the <clear/> line below --> | ||
<clear /> | ||
<add key="dotnet-cli" value="https://dotnet.myget.org/F/dotnet-cli/api/v3/index.json" /> | ||
<!--<add key="dotnet-core" value="https://dotnet.myget.org/F/dotnet-core/api/v3/index.json" />--> | ||
<add key="api.nuget.org" value="https://api.nuget.org/v3/index.json" /> | ||
<add key="fsharp-daily" value="https://www.myget.org/F/fsharp-daily/api/v3/index.json" /> | ||
<add key="my_local" value="../../../lib/nupgks" /> | ||
<add key="fakelib.netcore" value="../FakeLib.netcore/bin/Debug" /> | ||
<add key="commandline.netcore" value="https://www.myget.org/F/ebyte-dotnetcore/api/v3/index.json" /> | ||
</packageSources> | ||
</configuration> |
Oops, something went wrong.