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

Preview of WebPubSub with RequestContext #25063

Closed
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
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public bool Equals(ContentType other)
}

/// <inheritdoc />
public bool Equals(string other)
public bool Equals(string? other)
=> string.Equals(_contentType, _contentType, StringComparison.Ordinal);

/// <inheritdoc />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,18 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.29709.97
# Visual Studio Version 17
VisualStudioVersion = 17.0.31717.71
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Azure.Core.TestFramework", "..\..\core\Azure.Core.TestFramework\src\Azure.Core.TestFramework.csproj", "{8052009B-2126-44A3-88CD-4F3B17894C64}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Azure.Messaging.WebPubSub", "src\Azure.Messaging.WebPubSub.csproj", "{AF06AB51-3B39-4905-B7EA-CD7563DE5770}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Azure.Messaging.WebPubSub.Tests", "tests\Azure.Messaging.WebPubSub.Tests.csproj", "{ADB00BD6-8FEE-4176-BE15-4F530F5C8F29}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Azure.Core", "..\..\core\Azure.Core\src\Azure.Core.csproj", "{F7772FFA-7B0B-4776-9A2D-F12F44A984FB}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Azure.Core.Experimental", "..\..\core\Azure.Core.Experimental\src\Azure.Core.Experimental.csproj", "{CA233B5F-E610-46CA-91CF-2E025D20E79D}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand All @@ -27,6 +31,14 @@ Global
{ADB00BD6-8FEE-4176-BE15-4F530F5C8F29}.Debug|Any CPU.Build.0 = Debug|Any CPU
{ADB00BD6-8FEE-4176-BE15-4F530F5C8F29}.Release|Any CPU.ActiveCfg = Release|Any CPU
{ADB00BD6-8FEE-4176-BE15-4F530F5C8F29}.Release|Any CPU.Build.0 = Release|Any CPU
{F7772FFA-7B0B-4776-9A2D-F12F44A984FB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F7772FFA-7B0B-4776-9A2D-F12F44A984FB}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F7772FFA-7B0B-4776-9A2D-F12F44A984FB}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F7772FFA-7B0B-4776-9A2D-F12F44A984FB}.Release|Any CPU.Build.0 = Release|Any CPU
{CA233B5F-E610-46CA-91CF-2E025D20E79D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{CA233B5F-E610-46CA-91CF-2E025D20E79D}.Debug|Any CPU.Build.0 = Debug|Any CPU
{CA233B5F-E610-46CA-91CF-2E025D20E79D}.Release|Any CPU.ActiveCfg = Release|Any CPU
{CA233B5F-E610-46CA-91CF-2E025D20E79D}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Azure.Core" />
<PackageReference Include="Azure.Core.Experimental" />
<PackageReference Include="System.Text.Json" />
</ItemGroup>

Expand All @@ -30,5 +28,8 @@
<Compile Include="$(AzureCoreSharedSources)AzureResourceProviderNamespaceAttribute.cs" LinkBase="Shared" />
<Compile Include="$(AzureCoreSharedSources)Argument.cs" LinkBase="Shared" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\core\Azure.Core\src\Azure.Core.csproj" />
</ItemGroup>

</Project>

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading