File tree Expand file tree Collapse file tree 2 files changed +9
-0
lines changed
src/Hosting/IntegrationTesting/src Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -35,6 +35,8 @@ public virtual Task<PublishedApplication> Publish(DeploymentParameters deploymen
35
35
+ $ " --output \" { publishDirectory . FullName } \" "
36
36
+ $ " --framework { deploymentParameters . TargetFramework } "
37
37
+ $ " --configuration { deploymentParameters . Configuration } "
38
+ // avoids triggering builds of dependencies of the test app which could cause issues like https://github.com/dotnet/arcade/issues/2941
39
+ + $ " --no-dependencies"
38
40
+ $ " /p:TargetArchitecture={ deploymentParameters . RuntimeArchitecture } "
39
41
+ " --no-restore" ;
40
42
Original file line number Diff line number Diff line change 5
5
<PatchVersion >0</PatchVersion >
6
6
<VersionPrefix >$(MajorVersion).$(MinorVersion).$(PatchVersion)</VersionPrefix >
7
7
<PreReleaseVersionLabel >preview6</PreReleaseVersionLabel >
8
+ <AssemblyVersion Condition =" '$(IsReferenceAssemblyProject)' != 'true'" >$(VersionPrefix).0</AssemblyVersion >
9
+ <!--
10
+ We do not support changing reference assemblies in a patch. This ignores
11
+ the patch version number to ensure assembly version of ref assemblies stays constant
12
+ throughout major.minor.
13
+ -->
14
+ <AssemblyVersion Condition =" '$(IsReferenceAssemblyProject)' == 'true'" >$(MajorVersion).$(MinorVersion).0.0</AssemblyVersion >
8
15
</PropertyGroup >
9
16
10
17
<PropertyGroup >
You can’t perform that action at this time.
0 commit comments