Skip to content

Commit 5159870

Browse files
committed
refs
1 parent bddace3 commit 5159870

32 files changed

+35
-52
lines changed

docs/http-passthrough.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ await clientFormSender.Send(
337337
{"fileName", "fileContents"u8.ToArray()}
338338
});
339339
```
340-
<sup><a href='/src/SqlServer.Native.Tests/HttpPassthrough/Snippets/Usage.cs#L8-L22' title='Snippet source file'>snippet source</a> | <a href='#snippet-ClientFormSender' title='Start of snippet'>anchor</a></sup>
340+
<sup><a href='/src/SqlServer.Native.Tests/HttpPassthrough/Snippets/Usage.cs#L10-L24' title='Snippet source file'>snippet source</a> | <a href='#snippet-ClientFormSender' title='Start of snippet'>anchor</a></sup>
341341
<!-- endSnippet -->
342342

343343
This can be useful when performing [Integration testing in ASP.NET Core](https://docs.microsoft.com/en-us/aspnet/core/testing/integration-testing).
@@ -361,5 +361,5 @@ await clientFormSender.Send(
361361
{"fileName", "fileContents"u8.ToArray()}
362362
});
363363
```
364-
<sup><a href='/src/SqlServer.Native.Tests/HttpPassthrough/Snippets/Usage.cs#L27-L45' title='Snippet source file'>snippet source</a> | <a href='#snippet-asptesthost' title='Start of snippet'>anchor</a></sup>
364+
<sup><a href='/src/SqlServer.Native.Tests/HttpPassthrough/Snippets/Usage.cs#L29-L47' title='Snippet source file'>snippet source</a> | <a href='#snippet-asptesthost' title='Start of snippet'>anchor</a></sup>
365365
<!-- endSnippet -->

src/Shared/Shared.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>net9.0</TargetFramework>
3+
<TargetFramework>net10.0</TargetFramework>
44
</PropertyGroup>
55
<ItemGroup>
66
<PackageReference Include="Microsoft.Data.SqlClient" />

src/SqlServer.Deduplication.SampleEndpoint/SqlServer.Deduplication.SampleEndpoint.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<OutputType>Exe</OutputType>
4-
<TargetFramework>net9.0</TargetFramework>
4+
<TargetFramework>net10.0</TargetFramework>
55
</PropertyGroup>
66
<ItemGroup>
77
<PackageReference Include="Microsoft.Data.SqlClient" />

src/SqlServer.Deduplication/SqlServer.Deduplication.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<PropertyGroup>
33
<AssemblyName>NServiceBus.SqlServer.Deduplication</AssemblyName>
44
<PackageName>NServiceBus.SqlServer.Deduplication</PackageName>
5-
<TargetFramework>net9.0</TargetFramework>
5+
<TargetFramework>net10.0</TargetFramework>
66
<Description>Message deduplication for the SQL Server transport.</Description>
77
<DefineConstants>$(DefineConstants);SqlServerDedupe</DefineConstants>
88
</PropertyGroup>

src/SqlServer.HttpPassthrough.SampleEndpoint/SqlServer.HttpPassthrough.SampleEndpoint.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<OutputType>Exe</OutputType>
4-
<TargetFramework>net9.0</TargetFramework>
4+
<TargetFramework>net10.0</TargetFramework>
55
</PropertyGroup>
66
<ItemGroup>
77
<PackageReference Include="Microsoft.Data.SqlClient" />
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
// Global using directives
2+
3+
global using Microsoft.AspNetCore;

src/SqlServer.HttpPassthrough.SampleWeb/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using Microsoft.AspNetCore;
1+
#pragma warning disable ASPDEPR008
22

33
public class Program
44
{

src/SqlServer.HttpPassthrough.SampleWeb/SqlServer.HttpPassthrough.SampleWeb.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
22
<PropertyGroup>
3-
<TargetFramework>net9.0</TargetFramework>
3+
<TargetFramework>net10.0</TargetFramework>
44
</PropertyGroup>
55
<ItemGroup>
66
<Content Include="test.html">

src/SqlServer.HttpPassthrough/SqlServer.HttpPassthrough.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<PropertyGroup>
33
<AssemblyName>NServiceBus.SqlServer.HttpPassthrough</AssemblyName>
44
<PackageName>NServiceBus.SqlServer.HttpPassthrough</PackageName>
5-
<TargetFramework>net9.0</TargetFramework>
5+
<TargetFramework>net10.0</TargetFramework>
66
<Description>HTTP passthrough for the SQL Server transport.</Description>
77
</PropertyGroup>
88
<ItemGroup>

src/SqlServer.Native.SubscriptionSampleEndpoint/SqlServer.Native.SubscriptionSampleEndpoint.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<OutputType>Exe</OutputType>
4-
<TargetFramework>net9.0</TargetFramework>
4+
<TargetFramework>net10.0</TargetFramework>
55
</PropertyGroup>
66
<ItemGroup>
77
<PackageReference Include="Microsoft.Data.SqlClient" />

0 commit comments

Comments
 (0)