Skip to content

Commit bd11954

Browse files
committed
version 18 start
1 parent 4fcf08e commit bd11954

File tree

4 files changed

+9
-20
lines changed

4 files changed

+9
-20
lines changed

Directory.Build.props

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,6 @@
1515
</PropertyGroup>
1616

1717
<PropertyGroup>
18-
<!--
19-
This version is read by vsts-prebuild.ps1 and is a base for the current version, this should be updated at the start of
20-
new iteration to the goal number. This is also used to version the local packages. This version needs to be statically
21-
readable when we read the file as xml, don't move it to a .props file, unless you change the build server process
22-
-->
23-
<TPVersionPrefix>17.10.0</TPVersionPrefix>
24-
<!--
25-
Versioning is defined from the build script. Use a default dev build if it's not defined.
26-
Sets the AssemblyVersion, AssemblyFileVersion and AssemblyInformationalVersion
27-
-->
28-
<Version Condition="'$(Version)' == ''">$(TPVersionPrefix)-dev</Version>
2918
<!-- Override the AssemblyVersion as 15.0.0 since protocol depends on this version for serialization. This is also defined in build script. -->
3019
<AssemblyVersion Condition="'$(AssemblyVersion)' == ''">15.0.0</AssemblyVersion>
3120
<!-- Auto generating binding redirects breaks testhost when running under net8.0 vstest.console as .NET Framework net462. -->

eng/Versions.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
from appending +<commitId>, which breaks DTAAgent.
1414
-->
1515
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
16-
<VersionPrefix>17.15.0</VersionPrefix>
16+
<VersionPrefix>18.0.0</VersionPrefix>
1717
<PreReleaseVersionLabel>preview</PreReleaseVersionLabel>
1818
</PropertyGroup>
1919
<PropertyGroup Label="Arcade settings">

src/testhost.x86/app.config

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,31 +18,31 @@
1818
</dependentAssembly>
1919
<dependentAssembly>
2020
<assemblyIdentity name="Microsoft.VisualStudio.TestWindow.Interfaces" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
21-
<bindingRedirect oldVersion="11.0.0.0-16.0.0.0" newVersion="17.0.0.0" />
21+
<bindingRedirect oldVersion="11.0.0.0-18.0.0.0" newVersion="18.0.0.0" />
2222
</dependentAssembly>
2323
<dependentAssembly>
2424
<assemblyIdentity name="Microsoft.VisualStudio.QualityTools.UnitTestFramework" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
2525
<bindingRedirect oldVersion="10.1.0.0" newVersion="10.0.0.0" />
2626
</dependentAssembly>
2727
<dependentAssembly>
2828
<assemblyIdentity name="Microsoft.VisualStudio.QualityTools.Resource" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
29-
<bindingRedirect oldVersion="10.0.0.0-16.0.0.0" newVersion="17.0.0.0" />
29+
<bindingRedirect oldVersion="10.0.0.0-18.0.0.0" newVersion="18.0.0.0" />
3030
</dependentAssembly>
3131
<dependentAssembly>
3232
<assemblyIdentity name="Microsoft.VisualStudio.QualityTools.ControllerObject" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
33-
<bindingRedirect oldVersion="10.0.0.0-16.0.0.0" newVersion="17.0.0.0" />
33+
<bindingRedirect oldVersion="10.0.0.0-18.0.0.0" newVersion="18.0.0.0" />
3434
</dependentAssembly>
3535
<dependentAssembly>
3636
<assemblyIdentity name="Microsoft.VisualStudio.QualityTools.ExecutionCommon" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
37-
<bindingRedirect oldVersion="10.0.0.0-16.0.0.0" newVersion="17.0.0.0" />
37+
<bindingRedirect oldVersion="10.0.0.0-18.0.0.0" newVersion="18.0.0.0" />
3838
</dependentAssembly>
3939
<dependentAssembly>
4040
<assemblyIdentity name="Microsoft.VisualStudio.QualityTools.Common" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
41-
<bindingRedirect oldVersion="10.0.0.0-16.0.0.0" newVersion="17.0.0.0" />
41+
<bindingRedirect oldVersion="10.0.0.0-18.0.0.0" newVersion="18.0.0.0" />
4242
</dependentAssembly>
4343
<dependentAssembly>
4444
<assemblyIdentity name="Microsoft.VisualStudio.QualityTools.Tips.UnitTest.ObjectModel" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
45-
<bindingRedirect oldVersion="10.0.0.0-16.0.0.0" newVersion="17.0.0.0" />
45+
<bindingRedirect oldVersion="10.0.0.0-18.0.0.0" newVersion="18.0.0.0" />
4646
</dependentAssembly>
4747
<dependentAssembly>
4848
<!-- Microsoft.Extensions.DependencyModel depends on version 9.0.0, and newer versions of that nuget don't support all the frameworks we need anymore. -->

src/vstest.console/app.config

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@
1414
<!-- Test adapters compiled against version 11-14, need to be redirected to version 15. -->
1515
<dependentAssembly>
1616
<assemblyIdentity name="Microsoft.VisualStudio.TestPlatform.ObjectModel" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
17-
<bindingRedirect oldVersion="11.0.0.0-14.0.0.0" newVersion="15.0.0.0" />
17+
<bindingRedirect oldVersion="11.0.0.0-15.0.0.0" newVersion="15.0.0.0" />
1818
</dependentAssembly>
1919
<dependentAssembly>
2020
<assemblyIdentity name="Microsoft.VisualStudio.QualityTools.Tips.UnitTest.ObjectModel" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
21-
<bindingRedirect oldVersion="10.0.0.0-16.0.0.0" newVersion="17.0.0.0" />
21+
<bindingRedirect oldVersion="10.0.0.0-18.0.0.0" newVersion="18.0.0.0" />
2222
</dependentAssembly>
2323
<dependentAssembly>
2424
<!-- Microsoft.Extensions.DependencyModel depends on version 9.0.0, and newer versions of that nuget don't support all the frameworks we need anymore. -->

0 commit comments

Comments
 (0)