File tree Expand file tree Collapse file tree 5 files changed +8
-7
lines changed Expand file tree Collapse file tree 5 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ resources:
16
16
options : --entrypoint=""
17
17
18
18
variables :
19
- VcVersion : 1.14.11
19
+ VcVersion : 1.14.13
20
20
ROOT : $(Build.SourcesDirectory)
21
21
CDP_DEFINITION_BUILD_COUNT : $[counter('', 0)] # needed for onebranch.pipeline.version task https://aka.ms/obpipelines/versioning
22
22
ENABLE_PRS_DELAYSIGN : 1
Original file line number Diff line number Diff line change 18
18
vmImage : windows-latest
19
19
20
20
variables :
21
- VcVersion : 1.14.12
21
+ VcVersion : 1.14.13
22
22
ROOT : $(Build.SourcesDirectory)
23
23
CDP_DEFINITION_BUILD_COUNT : $[counter('', 0)] # needed for onebranch.pipeline.version task https://aka.ms/obpipelines/versioning
24
24
ENABLE_PRS_DELAYSIGN : 1
Original file line number Diff line number Diff line change 31
31
fi
32
32
33
33
echo " Building VirtualClient solution."
34
- dotnet build src/VirtualClient/VirtualClient.sln -c Release
34
+ dotnet build src/VirtualClient/VirtualClient.sln -c Release -p:VCBuildVersion=$VCBuildVersion
35
+
35
36
36
37
if [ " $BUILD_ALL " = true ]; then
37
38
echo " Publishing VirtualClient for all platforms."
Original file line number Diff line number Diff line change 172
172
higher than the latest production release version as defined in the YAML files
173
173
(e.g. /repo/.pipeline) and that is used in the Official builds. For example, if the
174
174
major/minor version in the YAML file is set to 1.5.*, then the default version below
175
- should be set to 1.6 .0.0. This helps to simplify the debugging experience for developers
175
+ should be set to 1.0 .0.0. This helps to simplify the debugging experience for developers
176
176
who are creating extensions to the Virtual Client by avoiding errors/warnings surfaced by
177
177
the Visual Studio debugger around mismatched versions of common .dlls.
178
178
181
181
<PropertyGroup >
182
182
<PackagePreReleaseSuffix ></PackagePreReleaseSuffix >
183
183
<GenerateAssemblyInfo >true</GenerateAssemblyInfo >
184
- <AssemblyVersion >1.6 .0.0</AssemblyVersion >
184
+ <AssemblyVersion >1.0 .0.0</AssemblyVersion >
185
185
<AssemblyVersion Condition =" '$(VCBuildVersion)' != ''" >$(VCBuildVersion)</AssemblyVersion >
186
186
</PropertyGroup >
187
187
Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ been made. This process is generally followed with most changes to the Virtual C
90
90
* **Set the default build version to a major/minor which is higher than the version set in the pipeline YAML files above.
91
91
In order to ensure the debugging experience for developers creating extensions for the Virtual Client, the default version
92
92
should be set to a higher major/minor version than the one for the Official build. For example, if the Official build version
93
- in the YAML is set to a major/minor of 1.5.*, then the default version for the Virtual Client should be set to 1.6 .*. The default
93
+ in the YAML is set to a major/minor of 1.5.*, then the default version for the Virtual Client should be set to 1.0 .*. The default
94
94
version is set in the Module.props for the Virtual Client solution/directory.
95
95
96
96
<div style="font-size:10pt">
@@ -99,7 +99,7 @@ been made. This process is generally followed with most changes to the Virtual C
99
99
<PropertyGroup>
100
100
<PackagePreReleaseSuffix></PackagePreReleaseSuffix>
101
101
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
102
- <AssemblyVersion>1.6 .0.0</AssemblyVersion>
102
+ <AssemblyVersion>1.0 .0.0</AssemblyVersion>
103
103
<AssemblyVersion Condition="'$(VCBuildVersion)' != ''">$(VCBuildVersion)</AssemblyVersion>
104
104
</PropertyGroup>
105
105
```
You can’t perform that action at this time.
0 commit comments