Skip to content
Open
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
2 changes: 1 addition & 1 deletion samples/Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
<PackageVersion Include="Microsoft.Net.Compilers.Toolset" Version="4.12.0-3.final" />
</ItemGroup>
<ItemGroup>
<GlobalPackageReference Condition="'$(TargetFramework)'=='net8.0'" Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.3" />
<GlobalPackageReference Condition="'$(TargetFramework)'=='net10.0'" Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.3" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion samples/Samples.AspNetCore/Samples.AspNetCore.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net10.0</TargetFramework>
<MvcRazorCompileOnPublish>true</MvcRazorCompileOnPublish>
</PropertyGroup>
<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net10.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\StackExchange.Exceptional.AspNetCore\StackExchange.Exceptional.AspNetCore.csproj" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<RootNamespace>StackExchange.Exceptional</RootNamespace>
<Description>.NET Error handler/logger used internally at Stack Overflow. Primarily for logging all unhandled exceptions to SQL, but also supporting JSON and Memory based logging.</Description>
<PackageTags>SQL JSON Exception Handler Errors Stack Exchange Exceptional</PackageTags>
<TargetFrameworks>net8.0</TargetFrameworks>
<TargetFrameworks>net10.0</TargetFrameworks>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="../StackExchange.Exceptional.Shared/StackExchange.Exceptional.Shared.csproj" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<AssemblyName>StackExchange.Exceptional.MongoDB</AssemblyName>
<Description>MongoDB storage provider for StackExchange.Exceptional</Description>
<PackageTags>NoSQL MongoDB Exception Handler Errors Stack Exchange Exceptional</PackageTags>
<TargetFrameworks>net462;net8.0</TargetFrameworks>
<TargetFrameworks>net462;net10.0</TargetFrameworks>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\StackExchange.Exceptional.Shared\StackExchange.Exceptional.Shared.csproj" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<AssemblyName>StackExchange.Exceptional.MySQL</AssemblyName>
<Description>MySQL storage provider for StackExchange.Exceptional</Description>
<PackageTags>SQL MySQL Exception Handler Errors Stack Exchange Exceptional</PackageTags>
<TargetFrameworks>net462;net8.0</TargetFrameworks>
<TargetFrameworks>net462;net10.0</TargetFrameworks>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\StackExchange.Exceptional.Shared\StackExchange.Exceptional.Shared.csproj" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Description>PostgreSql storage provider for StackExchange.Exceptional</Description>
<Authors>$(Authors);Mihai Bogdan Eugen</Authors>
<PackageTags>SQL PostgreSql Exception Handler Errors Stack Exchange Exceptional</PackageTags>
<TargetFrameworks>net462;net8.0</TargetFrameworks>
<TargetFrameworks>net462;net10.0</TargetFrameworks>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\StackExchange.Exceptional.Shared\StackExchange.Exceptional.Shared.csproj" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<PropertyGroup>
<AssemblyName>StackExchange.Exceptional.Shared</AssemblyName>
<Description>You shouldn't reference this - Exceptional's shared library for all frameworks</Description>
<TargetFrameworks>net462;net8.0</TargetFrameworks>
<TargetFrameworks>net462;net10.0</TargetFrameworks>
<RootNamespace>StackExchange.Exceptional</RootNamespace>
</PropertyGroup>
<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Threading.Tasks;
using Dapper;
using StackExchange.Exceptional.Internal;
#if NET8_0_OR_GREATER
#if NET10_0_OR_GREATER
using Microsoft.Data.SqlClient;
#else
using System.Data.SqlClient;
Expand Down
2 changes: 1 addition & 1 deletion tests/Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
</ItemGroup>
<ItemGroup>
<GlobalPackageReference Condition="'$(TargetFramework)'=='net8.0'" Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.3" />
<GlobalPackageReference Condition="'$(TargetFramework)'=='net10.0'" Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.3" />
<GlobalPackageReference Include="xunit.runner.visualstudio" Version="2.8.2" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0</TargetFrameworks>
<TargetFrameworks>net10.0</TargetFrameworks>
<AssemblyName>StackExchange.Exceptional.Tests.AspNetCore</AssemblyName>
<IsTestProject Condition="'$(OS)' != 'Windows_NT' AND $(TargetFramework.StartsWith('net4'))">false</IsTestProject>
</PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net48;net8.0</TargetFrameworks>
<TargetFrameworks>net48;net10.0</TargetFrameworks>
<AssemblyName>StackExchange.Exceptional.Tests</AssemblyName>
<IsTestProject Condition="'$(OS)' != 'Windows_NT' AND $(TargetFramework.StartsWith('net4'))">false</IsTestProject>
</PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using StackExchange.Exceptional.Stores;
using Xunit;
using Xunit.Abstractions;
#if NET8_0_OR_GREATER
#if NET10_0_OR_GREATER
using Microsoft.Data.SqlClient;
#else
using System.Data.SqlClient;
Expand Down