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

Test [DebuggerDisableUserUnhandledExceptions] #107

Closed
wants to merge 6 commits into from
Closed
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
Binary file added .packages/Polly.8.4.3-pr.2254.4059.nupkg
Binary file not shown.
Binary file added .packages/Polly.8.4.3-pr.2254.4059.snupkg
Binary file not shown.
Binary file added .packages/Polly.Core.8.4.3-pr.2254.4059.nupkg
Binary file not shown.
Binary file added .packages/Polly.Core.8.4.3-pr.2254.4059.snupkg
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added .packages/Polly.Testing.8.4.3-pr.2254.4059.nupkg
Binary file not shown.
Binary file added .packages/Polly.Testing.8.4.3-pr.2254.4059.snupkg
Binary file not shown.
4 changes: 4 additions & 0 deletions NuGet.config
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,13 @@
<configuration>
<packageSources>
<clear />
<add key="Polly" value=".packages" />
<add key="NuGet" value="https://api.nuget.org/v3/index.json" />
</packageSources>
<packageSourceMapping>
<packageSource key="Polly">
<package pattern="Polly*" />
</packageSource>
<packageSource key="NuGet">
<package pattern="*" />
</packageSource>
Expand Down
12 changes: 6 additions & 6 deletions PollyDemos/PollyDemos.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@
<OutputType>Library</OutputType>
<ProjectType>Library</ProjectType>
<RootNamespace>PollyDemos</RootNamespace>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="8.0.0" />
<PackageReference Include="Polly.Core" Version="8.4.2" />
<PackageReference Include="Polly.Extensions" Version="8.4.2" />
<PackageReference Include="Polly.RateLimiting" Version="8.4.2" />
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="9.0.0-rc.2.24474.1" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="9.0.0-rc.2.24473.5" />
<PackageReference Include="Polly.Core" Version="8.4.3-pr.2254.4059" />
<PackageReference Include="Polly.Extensions" Version="8.4.3-pr.2254.4059" />
<PackageReference Include="Polly.RateLimiting" Version="8.4.3-pr.2254.4059" />
</ItemGroup>
<ItemGroup>
<Using Include="Polly" />
Expand Down
2 changes: 1 addition & 1 deletion PollyTestClientConsole/PollyTestClientConsole.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<Nullable>enable</Nullable>
<OutputType>Exe</OutputType>
<RootNamespace>PollyTestClientConsole</RootNamespace>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\PollyDemos\PollyDemos.csproj" />
Expand Down
2 changes: 1 addition & 1 deletion PollyTestClientWpf/PollyTestClientWpf.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<TargetFramework>net9.0-windows</TargetFramework>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<UseWPF>true</UseWPF>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion PollyTestWebApi/PollyTestWebApi.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
<PropertyGroup>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
</PropertyGroup>
</Project>
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"sdk": {
"version": "8.0.100",
"version": "9.0.100-rc.2.24474.11",
"allowPrerelease": false,
"rollForward": "latestMajor"
}
Expand Down