Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make older uwp work #3166

Merged
merged 4 commits into from
Nov 18, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,3 +55,4 @@ Please see [issue tracking](https://github.com/Microsoft/vstest-docs/blob/main/i

### Roadmap
For more information on shipped and upcoming features/enhancements please refer to our [Releases](https://github.com/Microsoft/vstest-docs/blob/main/docs/releases.md) and [Quarterly Checkin reports](https://github.com/Microsoft/vstest-docs/tree/main/Quarterly%20Checkins)

Original file line number Diff line number Diff line change
Expand Up @@ -63,14 +63,14 @@
<PackageReference Include="NuGet.Frameworks" Version="$(NuGetFrameworksVersion)" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'uap10.0'">
<PackageReference Include="NETStandard.Library" Version="1.6.1" />
<PackageReference Include="System.ComponentModel.TypeConverter" Version="4.3.0" />
<PackageReference Include="System.Xml.XPath" Version="4.3.0" />
<PackageReference Include="System.Xml.XPath.XmlDocument" Version="4.3.0" />
<ItemGroup Condition="'$(TargetFramework)' == 'uap10.0'">
<PackageReference Include="NETStandard.Library" Version="1.6.0" />
<PackageReference Include="System.ComponentModel.TypeConverter" Version="4.3.0" />
<PackageReference Include="System.Xml.XPath" Version="4.0.1" />
<PackageReference Include="System.Xml.XPath.XmlDocument" Version="4.0.1" />

<PackageReference Include="NuGet.Frameworks" Version="4.6.4" />
</ItemGroup>
<PackageReference Include="NuGet.Frameworks" Version="4.6.4" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'netstandard1.0'">
<Compile Remove="DataCollector\**" />
Expand Down
2 changes: 1 addition & 1 deletion src/package/nuspec/TestPlatform.ObjectModel.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
</group>

<group targetFramework="uap10.0">
<dependency id="NETStandard.Library" version="[1.6.1, )" />
<dependency id="NETStandard.Library" version="[1.6.0, )" />
<dependency id="Microsoft.NETCore.UniversalWindowsPlatform" version="[5.0.0, )" />
<dependency id="System.ComponentModel.TypeConverter" version="[4.0.0, )" />
<dependency id="System.Xml.XPath" version="[4.0.0, )" />
Expand Down