-
Notifications
You must be signed in to change notification settings - Fork 59
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
Add SBRPs for vstest #653
Merged
NikolaMilosavljevic
merged 4 commits into
dotnet:main
from
NikolaMilosavljevic:vstest.sbrp
Apr 25, 2023
Merged
Add SBRPs for vstest #653
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
6e60311
Microsoft.Build.Framework.16.0.461
NikolaMilosavljevic 2f40c6c
Microsoft.Build.Utilities.Core.16.0.461
NikolaMilosavljevic bdbaef5
Microsoft.Extensions.FileSystemGlobbing,2.0.0
NikolaMilosavljevic 9ae4ba5
NuGet.Frameworks.5.11.0
NikolaMilosavljevic File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
...Packages/src/microsoft.build.framework/16.0.461/Microsoft.Build.Framework.16.0.461.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>netstandard2.0</TargetFrameworks> | ||
<AssemblyName>Microsoft.Build.Framework</AssemblyName> | ||
<ProjectTemplateVersion>2</ProjectTemplateVersion> | ||
</PropertyGroup> | ||
|
||
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'"> | ||
<PackageReference Include="System.Runtime.Serialization.Primitives" Version="4.1.1" /> | ||
<PackageReference Include="System.Threading.Thread" Version="4.0.0" /> | ||
</ItemGroup> | ||
|
||
</Project> |
966 changes: 966 additions & 0 deletions
966
...es/src/microsoft.build.framework/16.0.461/lib/netstandard2.0/Microsoft.Build.Framework.cs
Large diffs are not rendered by default.
Oops, something went wrong.
26 changes: 26 additions & 0 deletions
26
...referencePackages/src/microsoft.build.framework/16.0.461/microsoft.build.framework.nuspec
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd"> | ||
<metadata> | ||
<id>Microsoft.Build.Framework</id> | ||
<version>16.0.461</version> | ||
<authors>Microsoft</authors> | ||
<owners>Microsoft</owners> | ||
<requireLicenseAcceptance>true</requireLicenseAcceptance> | ||
<licenseUrl>http://go.microsoft.com/fwlink/?LinkId=329770</licenseUrl> | ||
<projectUrl>http://go.microsoft.com/fwlink/?LinkId=624683</projectUrl> | ||
<iconUrl>https://go.microsoft.com/fwlink/?linkid=825694</iconUrl> | ||
<description>This package contains the Microsoft.Build.Framework assembly which is a common assembly used by other MSBuild assemblies.</description> | ||
<copyright>© Microsoft Corporation. All rights reserved.</copyright> | ||
<tags>MSBuild</tags> | ||
<serviceable>true</serviceable> | ||
<repository type="git" url="https://github.com/microsoft/msbuild" commit="6ff56ef63c3a1c9785d42fe2564d904ebd225ea0" /> | ||
<dependencies> | ||
<group targetFramework=".NETStandard2.0"> | ||
<dependency id="System.Runtime.Serialization.Primitives" version="4.1.1" exclude="Build,Analyzers" /> | ||
<dependency id="System.Threading.Thread" version="4.0.0" exclude="Build,Analyzers" /> | ||
</group> | ||
</dependencies> | ||
<frameworkAssemblies> | ||
</frameworkAssemblies> | ||
</metadata> | ||
</package> |
16 changes: 16 additions & 0 deletions
16
...rc/microsoft.build.utilities.core/16.0.461/Microsoft.Build.Utilities.Core.16.0.461.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>netstandard2.0</TargetFrameworks> | ||
<AssemblyName>Microsoft.Build.Utilities.Core</AssemblyName> | ||
<ProjectTemplateVersion>2</ProjectTemplateVersion> | ||
</PropertyGroup> | ||
|
||
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'"> | ||
<PackageReference Include="Microsoft.Build.Framework" Version="16.0.461" /> | ||
<PackageReference Include="Microsoft.Win32.Registry" Version="4.3.0" /> | ||
<PackageReference Include="System.Collections.Immutable" Version="1.5.0" /> | ||
<PackageReference Include="System.Text.Encoding.CodePages" Version="4.0.1" /> | ||
</ItemGroup> | ||
|
||
</Project> |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a pretty old version - 2019. What is the feasibility of getting them to upgrade to a newer version? Preferrably one in SBRP.