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

Update smoke tests for dependabot-core PR #244

Merged
merged 4 commits into from
Jan 9, 2025
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ tmp
# avoid checking in downloaded cli
/dependabot*
# vscode generates this on load
obj
bin/
obj/
# avoid checking local cache dir
cache
# cargo build output
Expand Down
5 changes: 5 additions & 0 deletions nuget/sdk-replacement-packages/global.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"sdk": {
"version": "8.0.304"
}
}
10 changes: 10 additions & 0 deletions nuget/sdk-replacement-packages/project.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>

<ItemGroup>
<!-- because of the SDK 8.0.304 specified in `global.json`, this reference will be replaced with version `8.0.4` then updated to `8.0.5` -->
brettfo marked this conversation as resolved.
Show resolved Hide resolved
<PackageReference Include="System.Text.Json" Version="8.0.0" />
</ItemGroup>
</Project>
3 changes: 0 additions & 3 deletions tests/smoke-nuget-potential-downgrade.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,6 @@ output:
- name: Microsoft.TestPlatform.ObjectModel
requirements: []
version: 17.6.3
- name: Microsoft.TestPlatform.TestHost
requirements: []
version: 17.6.3
- name: Microsoft.VisualStudio.ComponentModelHost
requirements: []
version: 17.6.268
Expand Down
Loading
Loading