Skip to content

Commit

Permalink
update sample
Browse files Browse the repository at this point in the history
  • Loading branch information
vicancy committed Aug 22, 2024
1 parent 7b914f7 commit 7d7e941
Show file tree
Hide file tree
Showing 19 changed files with 5 additions and 6 deletions.
4 changes: 2 additions & 2 deletions AzureSignalR.sln
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{36024D6C-A549-4269-B11B-4BFC5F08BD11}"
ProjectSection(SolutionItems) = preProject
.editorconfig = .editorconfig
build\dependencies.props = build\dependencies.props
build\dependencies.private.props = build\dependencies.private.props
build\dependencies.props = build\dependencies.props
Directory.Build.props = Directory.Build.props
Directory.Build.targets = Directory.Build.targets
NuGet.config = NuGet.config
Expand Down Expand Up @@ -69,7 +69,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BlazorAppSample", "samples\
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ChatSample", "ChatSample", "{C965ED06-6A17-4329-B3C6-811830F4F4ED}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ChatSample.NetCore31", "samples\ChatSample\ChatSample.NetCore31\ChatSample.NetCore31.csproj", "{63BB9836-126B-4E65-92B9-019438185E41}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ChatSample", "samples\ChatSample\ChatSample\ChatSample.csproj", "{63BB9836-126B-4E65-92B9-019438185E41}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Azure.SignalR.IntegrationTests", "test\Microsoft.Azure.SignalR.IntegrationTests\Microsoft.Azure.SignalR.IntegrationTests.csproj", "{3E11208B-B038-4840-8180-69DC6B5EAD22}"
EndProject
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<UserSecretsId>chatsample</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.SignalR.Protocols.MessagePack" Version="$(MicrosoftAspNetCoreSignalRProtocolsMessagePackPackageVersion)" />
<PackageReference Include="MessagePack" Version="$(MessagePackPackage3_1Version)" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\src\Microsoft.Azure.SignalR.Common\Microsoft.Azure.SignalR.Common.csproj" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Build stage
##################################################

FROM mcr.microsoft.com/dotnet/core/sdk:3.0
FROM mcr.microsoft.com/dotnet/core/sdk:8.0

COPY ./ /home/signalr-src

Expand All @@ -14,7 +14,7 @@ RUN dotnet build && \
# Final stage
##################################################

FROM mcr.microsoft.com/dotnet/core/runtime:3.0
FROM mcr.microsoft.com/dotnet/core/runtime:8.0

COPY --from=0 /home/build/ /home/SignalR

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 7d7e941

Please sign in to comment.