-
Notifications
You must be signed in to change notification settings - Fork 790
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Redo compile before - add fail on plainbuild error (#17103)
* Redo compile before - add fail on plainbuild error * temp * dotnet build it
- Loading branch information
1 parent
b08afc5
commit 12a3277
Showing
5 changed files
with
89 additions
and
9 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
42 changes: 42 additions & 0 deletions
42
tests/fsharp/SDKTests/tests/CompileOrder - BeforeAndAfter.proj
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,42 @@ | ||
<Project ToolsVersion="4.0" DefaultTargets="Test" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
|
||
<!-- Initialize Variables --> | ||
<PropertyGroup> | ||
<FSharpCompilerPath></FSharpCompilerPath> | ||
</PropertyGroup> | ||
|
||
<!-- Expected Values --> | ||
<PropertyGroup> | ||
<ExpectedFSharpShimPresent>true</ExpectedFSharpShimPresent> | ||
<ExpectedFSharpCompilerPath>/Common7/IDE/CommonExtensions/Microsoft/FSharp/Tools/</ExpectedFSharpCompilerPath> | ||
<ExpectedFscToolExe>fscAnyCpu.exe</ExpectedFscToolExe> | ||
<ExpectedFscToolPath>_VsInstallRoot_/Common7/IDE/CommonExtensions/Microsoft/FSharp/Tools/</ExpectedFscToolPath> | ||
<ExpectedDotnetFscCompilerPath></ExpectedDotnetFscCompilerPath> | ||
<ExpectedCompile>One;Two;Three;Four;Five;Six;Seven;Eight;Nine;Ten;Eleven;Twelve;Thirteen;Fourteen</ExpectedCompile> | ||
</PropertyGroup> | ||
|
||
<Import Project="ToolsTest.props" /> | ||
|
||
<PropertyGroup> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<CompileAfter Include="Eleven" /> | ||
<Compile Include="Thirteen" CompileOrder="CompileLast" /> | ||
<CompileBefore Include="Three" /> | ||
<CompileAfter Include="Twelve" /> | ||
<CompileBefore Include="Four" /> | ||
<Compile Include="Seven" /> | ||
<Compile Include="Eight" /> | ||
<Compile Include="Five" CompileOrder="CompileBefore" /> | ||
<Compile Include="One" CompileOrder="CompileFirst" /> | ||
<Compile Include="Nine" CompileOrder="CompileAfter" /> | ||
<Compile Include="Fourteen" CompileOrder="CompileLast" /> | ||
<Compile Include="Ten" CompileOrder="CompileAfter" /> | ||
<Compile Include="Two" CompileOrder="CompileFirst" /> | ||
<Compile Include="Six" CompileOrder="CompileBefore" /> | ||
</ItemGroup> | ||
|
||
<Import Project="ToolsTest.targets" /> | ||
|
||
</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