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

Commit2c4de48

Browse files
committed
Downgrade build script.
1 parentcb6cb5c commit2c4de48

File tree

6 files changed

+29
-14
lines changed

6 files changed

+29
-14
lines changed

‎build/targets/CommonPackages.targets‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project>
1+
<Projectxmlns="http://schemas.microsoft.com/developer/msbuild/2003">
22

33
<ItemGroup>
44
<PackageReferenceInclude="XliffTasks"Version="$(XliffTasksPackageVersion)" />

‎build/targets/ConvertPortablePdbs.targets‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project>
1+
<Projectxmlns="http://schemas.microsoft.com/developer/msbuild/2003">
22

33
<ItemGroup>
44
<PackageReferenceInclude="Microsoft.DiaSymReader.Pdb2Pdb"Version="$(MicrosoftDiaSymReaderPdb2PdbPackageVersion)" />

‎build/targets/GenerateAssemblyAttributes.targets‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project>
1+
<Projectxmlns="http://schemas.microsoft.com/developer/msbuild/2003">
22

33
<ImportProject="GitHash.props" />
44

‎build/targets/GenerateInternalsVisibleTo.targets‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project>
1+
<Projectxmlns="http://schemas.microsoft.com/developer/msbuild/2003">
22

33
<PropertyGroup>
44
<GeneratedFSharpInternalsVisibleToFile>$(IntermediateOutputPath)$(MSBuildProjectName).InternalsVisibleTo$(DefaultLanguageSourceExtension)</GeneratedFSharpInternalsVisibleToFile>

‎src/fsharp/FSharp.Build-proto/FSharp.Build-proto.fsproj‎

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,19 +39,24 @@
3939
<CompileInclude="..\FSharp.Build\WriteCodeFragment.fs">
4040
<Link>WriteCodeFragment.fs</Link>
4141
</Compile>
42-
<NoneInclude="..\FSharp.Build\Microsoft.FSharp.Targets"CopyToOutputDirectory="PreserveNewest">
42+
<NoneInclude="..\FSharp.Build\Microsoft.FSharp.Targets">
43+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
4344
<Link>Microsoft.FSharp.Targets</Link>
4445
</None>
45-
<NoneInclude="..\FSharp.Build\Microsoft.Portable.FSharp.Targets"CopyToOutputDirectory="PreserveNewest">
46+
<NoneInclude="..\FSharp.Build\Microsoft.Portable.FSharp.Targets">
47+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
4648
<Link>Microsoft.Portable.FSharp.Targets</Link>
4749
</None>
48-
<NoneInclude="..\FSharp.Build\Microsoft.FSharp.NetSdk.props"CopyToOutputDirectory="PreserveNewest">
50+
<NoneInclude="..\FSharp.Build\Microsoft.FSharp.NetSdk.props">
51+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
4952
<Link>Microsoft.FSharp.NetSdk.props</Link>
5053
</None>
51-
<NoneInclude="..\FSharp.Build\Microsoft.FSharp.NetSdk.targets"CopyToOutputDirectory="PreserveNewest">
54+
<NoneInclude="..\FSharp.Build\Microsoft.FSharp.NetSdk.targets">
55+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
5256
<Link>Microsoft.FSharp.NetSdk.targets</Link>
5357
</None>
54-
<NoneInclude="..\FSharp.Build\Microsoft.FSharp.Overrides.NetSdk.targets"CopyToOutputDirectory="PreserveNewest">
58+
<NoneInclude="..\FSharp.Build\Microsoft.FSharp.Overrides.NetSdk.targets">
59+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
5560
<Link>Microsoft.FSharp.Overrides.NetSdk.targets</Link>
5661
</None>
5762
</ItemGroup>

‎src/fsharp/FSharp.Build/FSharp.Build.fsproj‎

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,21 @@
3333
<CompileInclude="FSharpEmbedResXSource.fs" />
3434
<CompileInclude="WriteCodeFragment.fs" />
3535
<CompileInclude="CreateFSharpManifestResourceName.fs" />
36-
<NoneInclude="Microsoft.FSharp.Targets"CopyToOutputDirectory="PreserveNewest" />
37-
<NoneInclude="Microsoft.Portable.FSharp.Targets"CopyToOutputDirectory="PreserveNewest" />
38-
<NoneInclude="Microsoft.FSharp.NetSdk.props"CopyToOutputDirectory="PreserveNewest" />
39-
<NoneInclude="Microsoft.FSharp.NetSdk.targets"CopyToOutputDirectory="PreserveNewest" />
40-
<NoneInclude="Microsoft.FSharp.Overrides.NetSdk.targets"CopyToOutputDirectory="PreserveNewest" />
36+
<NoneInclude="Microsoft.FSharp.Targets">
37+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
38+
</None>
39+
<NoneInclude="Microsoft.Portable.FSharp.Targets">
40+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
41+
</None>
42+
<NoneInclude="Microsoft.FSharp.NetSdk.props">
43+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
44+
</None>
45+
<NoneInclude="Microsoft.FSharp.NetSdk.targets">
46+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
47+
</None>
48+
<NoneInclude="Microsoft.FSharp.Overrides.NetSdk.targets">
49+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
50+
</None>
4151
</ItemGroup>
4252

4353
<ItemGroupCondition=" '$(TargetDotnetProfile)' != 'coreclr'">

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp