File tree 4 files changed +15
-36
lines changed
System.CommandLine.Suggest
System.CommandLine.Suggest.Tests
4 files changed +15
-36
lines changed Original file line number Diff line number Diff line change 13
13
<PackageReference Include =" xunit.runner.visualstudio" />
14
14
</ItemGroup >
15
15
16
+ <Target Name =" PublishAfterBuild"
17
+ AfterTargets =" Build"
18
+ DependsOnTargets =" Publish"
19
+ Condition =" '$(PublishAfterBuild)' == 'true'" />
20
+
16
21
</Project >
Original file line number Diff line number Diff line change 7
7
<PropertyGroup >
8
8
<OutputType >Exe</OutputType >
9
9
<TargetFramework >$(TargetFrameworkForNETSDK)</TargetFramework >
10
+ <RuntimeIdentifiers >win-x64;linux-x64;osx-x64</RuntimeIdentifiers >
10
11
</PropertyGroup >
11
12
12
13
</Project >
Original file line number Diff line number Diff line change 16
16
<ItemGroup >
17
17
<ProjectReference Include =" ..\System.CommandLine.Suggest\dotnet-suggest.csproj" />
18
18
<ProjectReference Include =" ..\System.CommandLine.Tests\System.CommandLine.Tests.csproj" />
19
- </ItemGroup >
20
-
21
- <Target Name =" DotnetSuggestIntegrationTestAssets" BeforeTargets =" Build" Condition =" '$(Configuration)' == 'Release'" >
22
- <PropertyGroup >
23
- <TestAssetsPath >$([System.IO.Path]::GetFullPath('$(OutputPath)'))/TestAssets</TestAssetsPath >
24
- </PropertyGroup >
25
-
26
- <PropertyGroup Condition =" '$(OS)' == 'Windows_NT'" >
27
- <Rid >win-x64</Rid >
28
- </PropertyGroup >
29
-
30
- <PropertyGroup Condition =" '$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::OSX)))' == 'true'" >
31
- <Rid >osx-x64</Rid >
32
- </PropertyGroup >
33
19
34
- <PropertyGroup Condition =" '$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Linux)))' == 'true'" >
35
- <Rid >linux-x64</Rid >
36
- </PropertyGroup >
37
-
38
- <MSBuild BuildInParallel =" False" Projects =" ../System.CommandLine.Suggest/dotnet-suggest.csproj" Targets =" Restore" Properties =" UseAppHost=true;SelfContained=false;RuntimeIdentifier=$(Rid);ForceRestoreToEvaluateSeparately=1;Configuration=Release" />
39
-
40
- <MSBuild BuildInParallel =" False" Projects =" ../System.CommandLine.Suggest/dotnet-suggest.csproj" Targets =" Build;Publish" Properties =" UseAppHost=true;SelfContained=false;RuntimeIdentifier=$(Rid);PublishDir=$(TestAssetsPath);Configuration=Release" />
41
-
42
- <MSBuild BuildInParallel =" False" Projects =" EndToEndTestApp/EndToEndTestApp.csproj" Targets =" Restore" Properties =" UseAppHost=true;SelfContained=false;RuntimeIdentifier=$(Rid);ForceRestoreToEvaluateSeparately=1;Configuration=Release" />
43
-
44
- <MSBuild BuildInParallel =" False" Projects =" EndToEndTestApp/EndToEndTestApp.csproj" Targets =" Build;Publish" Properties =" UseAppHost=true;SelfContained=false;RuntimeIdentifier=$(Rid);PublishDir=$(TestAssetsPath);Configuration=Release" />
45
- </Target >
20
+ <!-- Sequence into build to make sure that publish assets are available for tests. -->
21
+ <ProjectReference Include =" EndToEndTestApp/EndToEndTestApp.csproj;
22
+ ../System.CommandLine.Suggest/dotnet-suggest.csproj"
23
+ AdditionalProperties =" SelfContained=false;RuntimeIdentifier=$(NETCoreSdkPortableRuntimeIdentifier);PublishDir=$(OutputPath)/TestAssets;PublishAfterBuild=true"
24
+ ReferenceOutputAssembly =" false" />
25
+ </ItemGroup >
46
26
47
27
</Project >
Original file line number Diff line number Diff line change 18
18
19
19
<PropertyGroup >
20
20
<!-- No warning for the scripts, it is part of the content, not to execuate-->
21
- <NoWarn >$(NoWarn);NU5110;NU5111; </NoWarn >
21
+ <NoWarn >$(NoWarn);NU5110;NU5111</NoWarn >
22
22
</PropertyGroup >
23
23
24
-
24
+ <!-- Remove the PublishDir global property to avoid System.CommandLine being built twice with different global properties (race condition). -->
25
25
<ItemGroup >
26
- <ProjectReference Include =" ..\System.CommandLine\System.CommandLine.csproj" />
26
+ <ProjectReference Include =" ..\System.CommandLine\System.CommandLine.csproj" GlobalPropertiesToRemove = " PublishDir;PublishAfterBuild " />
27
27
</ItemGroup >
28
28
29
29
<ItemGroup >
41
41
</Content >
42
42
</ItemGroup >
43
43
44
- <!-- Workaround https://github.com/dotnet/arcade/issues/2233 -->
45
- <Target Name =" _InitializeAssemblyVersion" BeforeTargets =" GetAssemblyVersion" >
46
- <PropertyGroup >
47
- <FileVersion ></FileVersion >
48
- </PropertyGroup >
49
- </Target >
50
-
51
44
</Project >
You can’t perform that action at this time.
0 commit comments