Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit7fe3465

Browse files
authored
fix casing of FCS outputs (dotnet#4383)
1 parent19ce02d commit7fe3465

File tree

25 files changed

+24
-25
lines changed

25 files changed

+24
-25
lines changed

‎build.cmd‎

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ set BUILD_FROMSOURCE=0
6464
setBUILD_VS=0
6565
setBUILD_FCS=0
6666
setBUILD_CONFIG=release
67-
setBUILD_CONFIG_LOWERCASE=release
6867
setBUILD_DIAG=
6968
setBUILD_PUBLICSIGN=0
7069

‎fcs/FSharp.Compiler.Service.MSBuild.v12/FSharp.Compiler.Service.MSBuild.v12.fsproj‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<OtherFlags>$(OtherFlags) --times</OtherFlags>
2323
<NoWarn>$(NoWarn);69;65;54;61;75</NoWarn>
2424
<DebugSymbols>true</DebugSymbols>
25-
<OutputPath>..\..\$(Configuration)\fcs\net45\</OutputPath>
25+
<OutputPath>..\..\$(Configuration.ToLower())\fcs\net45\</OutputPath>
2626
<TargetFrameworkProfile />
2727
<ResolveNuGetPackages>false</ResolveNuGetPackages>
2828
<Prefer32Bit>true</Prefer32Bit>

‎fcs/FSharp.Compiler.Service.ProjectCracker/FSharp.Compiler.Service.ProjectCracker.fsproj‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<AssemblyName>FSharp.Compiler.Service.ProjectCracker</AssemblyName>
1515
<Name>FSharp.Compiler.Service.ProjectCracker</Name>
1616
<OutputType>Library</OutputType>
17-
<OutputPath>..\..\$(Configuration)\fcs\net45\</OutputPath>
17+
<OutputPath>..\..\$(Configuration.ToLower())\fcs\net45\</OutputPath>
1818
<DocumentationFile>$(OutputPath)$(AssemblyName).xml</DocumentationFile>
1919
<ResolveNuGetPackages>false</ResolveNuGetPackages>
2020
<!-- We target .NET 4.5 for FSharp.Compiler.Service.dll to allow broader use of this DLL-->

‎fcs/FSharp.Compiler.Service.ProjectCrackerTool/FSharp.Compiler.Service.ProjectCrackerTool.fsproj‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<SchemaVersion>2.0</SchemaVersion>
1212
<ProjectGuid>b1bdd96d-47e1-4e65-8107-fbae23a06db4</ProjectGuid>
1313
<OutputType>Exe</OutputType>
14-
<OutputPath>..\..\$(Configuration)\fcs\net45\</OutputPath>
14+
<OutputPath>..\..\$(Configuration.ToLower())\fcs\net45\</OutputPath>
1515
<DocumentationFile>$(OutputPath)$(AssemblyName).xml</DocumentationFile>
1616
<RootNamespace>FSharp.Compiler.Service.ProjectCrackerTool</RootNamespace>
1717
<AssemblyName>FSharp.Compiler.Service.ProjectCrackerTool</AssemblyName>

‎fcs/FSharp.Compiler.Service.Tests/FSharp.Compiler.Service.Tests.fsproj‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<NoWarn>58;75</NoWarn>
1919
<TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
2020
<ResolveNuGetPackages>false</ResolveNuGetPackages>
21-
<OutputPath>..\..\$(Configuration)\fcs\net45\</OutputPath>
21+
<OutputPath>..\..\$(Configuration.ToLower())\fcs\net45\</OutputPath>
2222
<Tailcalls>true</Tailcalls>
2323
<WarningLevel>3</WarningLevel>
2424
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>

‎fcs/FSharp.Compiler.Service/FSharp.Compiler.Service.fsproj‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<Tailcalls>true</Tailcalls>
2020
<NoWarn>$(NoWarn);69;65;54;61;75</NoWarn>
2121
<DebugSymbols>true</DebugSymbols>
22-
<OutputPath>..\..\$(Configuration)\fcs\net45\</OutputPath>
22+
<OutputPath>..\..\$(Configuration.ToLower())\fcs\net45\</OutputPath>
2323
<DocumentationFile>$(OutputPath)$(AssemblyName).xml</DocumentationFile>
2424
<!-- We target .NET 4.5 for FSharp.Compiler.Service.dll to allow broader use of this DLL-->
2525
<TargetFrameworkVersionCondition=" '$(TargetFrameworkVersion)' == ''">v4.5</TargetFrameworkVersion>

‎fcs/build.fsx‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ let runCmdIn workDir (exe:string) = Printf.ksprintf (fun (args:string) ->
5151
// The rest of the code is standard F# build script
5252
// --------------------------------------------------------------------------------------
5353

54-
letreleaseDir= Path.Combine(__SOURCE_DIRECTORY__,"../Release")
54+
letreleaseDir= Path.Combine(__SOURCE_DIRECTORY__,"../release")
5555

5656

5757
// Read release notes & version info from RELEASE_NOTES.md

‎fcs/docsrc/tools/generate.fsx‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ open FSharp.MetadataFormat
3232
letroot="."
3333

3434
// Paths with template/source/output locations
35-
letbin=__SOURCE_DIRECTORY__@@"../../../Release/fcs/net45"
35+
letbin=__SOURCE_DIRECTORY__@@"../../../release/fcs/net45"
3636
letcontent=__SOURCE_DIRECTORY__@@"../content"
3737
letoutput=__SOURCE_DIRECTORY__@@"../../../docs"
3838
letfiles=__SOURCE_DIRECTORY__@@"../files"

‎fcs/docsrc/tools/generate.ja.fsx‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ open FSharp.MetadataFormat
4141
letroot="."
4242

4343
// Paths with template/source/output locations
44-
letbin=__SOURCE_DIRECTORY__@@"../../../Release/fcs/net45"
44+
letbin=__SOURCE_DIRECTORY__@@"../../../release/fcs/net45"
4545
letcontent=__SOURCE_DIRECTORY__@@"../content/ja"
4646
letoutputJa=__SOURCE_DIRECTORY__@@"../../../docs/ja"
4747
letfiles=__SOURCE_DIRECTORY__@@"../files"

‎tests/service/AssemblyContentProviderTests.fs‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#if INTERACTIVE
2-
#r"../../Debug/fcs/net45/FSharp.Compiler.Service.dll"// note, run 'build fcs debug' to generate this, this DLL has a public API so can be used from F# Interactive
2+
#r"../../debug/fcs/net45/FSharp.Compiler.Service.dll"// note, run 'build fcs debug' to generate this, this DLL has a public API so can be used from F# Interactive
33
#r"../../packages/NUnit.3.5.0/lib/net45/nunit.framework.dll"
44
#load"FsUnit.fs"
55
#load"Common.fs"

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp