Skip to content

Commit

Permalink
Bump Microsoft.AspNetCore.Components.WebAssembly.Server
Browse files Browse the repository at this point in the history
Bumps [Microsoft.AspNetCore.Components.WebAssembly.Server](https://github.com/dotnet/aspnetcore) from 6.0.13 to 6.0.30.
- [Release notes](https://github.com/dotnet/aspnetcore/releases)
- [Changelog](https://github.com/dotnet/aspnetcore/blob/main/docs/ReleasePlanning.md)
- [Commits](dotnet/aspnetcore@v6.0.13...v6.0.30)

---
updated-dependencies:
- dependency-name: Microsoft.AspNetCore.Components.WebAssembly.Server
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] committed May 27, 2024
1 parent 30415fe commit c3809b9
Showing 1 changed file with 55 additions and 55 deletions.
110 changes: 55 additions & 55 deletions query-tool/src/Piipan.QueryTool/Piipan.QueryTool.csproj
Original file line number Diff line number Diff line change
@@ -1,55 +1,55 @@
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<RootNamespace>Piipan.QueryTool</RootNamespace>
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
<RestoreLockedMode Condition="'$(ContinuousIntegrationBuild)' == 'true'">true</RestoreLockedMode>
<DefaultItemExcludes>mock_user.json;$(DefaultItemExcludes)</DefaultItemExcludes>
</PropertyGroup>

<!--
Because our static analysis tool, CodeQL, autobuilds C# with the UseSharedCompilation flag, we check this flag to avoid running npm tasks for these types of builds.
-->
<Target Name="NpmInstall" Inputs="package.json" Outputs="node_modules/.install-stamp" Condition="'$(UseSharedCompilation)' != 'false'">
<!--
Use npm install or npm ci depending on ContinuousIntegrationBuild value
-->
<Exec Command="npm ci" Condition="$(ContinuousIntegrationBuild) == 'true'" />
<Exec Command="npm install" Condition="$(ContinuousIntegrationBuild) != 'true'" />

<!-- Write the stamp file, so incremental builds work -->
<Touch Files="node_modules/.install-stamp" AlwaysCreate="true" />
</Target>

<!--
2. Compiles assets to wwwroot
MSBuild runs NpmInstall before this task because of the DependsOnTargets attribute.
Because our static analysis tool, CodeQL, autobuilds C# with the UseSharedCompilation flag, we check this flag to avoid running npm tasks for these types of builds.
-->
<Target Name="NpxGulpBuild" DependsOnTargets="NpmInstall" BeforeTargets="BeforeBuild" Condition="'$(UseSharedCompilation)' != 'false'">

<Exec Command="npx gulp build" />
</Target>

<ItemGroup>
<PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" Version="2.21.0" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Server" Version="6.0.13" />
<PackageReference Include="Microsoft.Extensions.Logging.AzureAppServices" Version="6.0.13" />
<PackageReference Include="NEasyAuthMiddleware" Version="2.0.0" />
<PackageReference Include="System.Text.Json" Version="6.0.7" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\..\match\src\Piipan.Match\Piipan.Match.Api\Piipan.Match.Api.csproj" />
<ProjectReference Include="..\..\..\match\src\Piipan.Match\Piipan.Match.Client\Piipan.Match.Client.csproj" />
<ProjectReference Include="..\..\..\shared\src\Piipan.Shared\Piipan.Shared.csproj" />
<ProjectReference Include="..\..\..\states\src\Piipan.States.Client\Piipan.States.Client.csproj" />
<ProjectReference Include="..\Piipan.QueryTool.Client\Piipan.QueryTool.Client.csproj" />
</ItemGroup>

<ItemGroup>
<Folder Include="Models\" />
</ItemGroup>
</Project>
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<RootNamespace>Piipan.QueryTool</RootNamespace>
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
<RestoreLockedMode Condition="'$(ContinuousIntegrationBuild)' == 'true'">true</RestoreLockedMode>
<DefaultItemExcludes>mock_user.json;$(DefaultItemExcludes)</DefaultItemExcludes>
</PropertyGroup>

<!--
Because our static analysis tool, CodeQL, autobuilds C# with the UseSharedCompilation flag, we check this flag to avoid running npm tasks for these types of builds.
-->
<Target Name="NpmInstall" Inputs="package.json" Outputs="node_modules/.install-stamp" Condition="'$(UseSharedCompilation)' != 'false'">
<!--
Use npm install or npm ci depending on ContinuousIntegrationBuild value
-->
<Exec Command="npm ci" Condition="$(ContinuousIntegrationBuild) == 'true'" />
<Exec Command="npm install" Condition="$(ContinuousIntegrationBuild) != 'true'" />

<!-- Write the stamp file, so incremental builds work -->
<Touch Files="node_modules/.install-stamp" AlwaysCreate="true" />
</Target>

<!--
2. Compiles assets to wwwroot
MSBuild runs NpmInstall before this task because of the DependsOnTargets attribute.
Because our static analysis tool, CodeQL, autobuilds C# with the UseSharedCompilation flag, we check this flag to avoid running npm tasks for these types of builds.
-->
<Target Name="NpxGulpBuild" DependsOnTargets="NpmInstall" BeforeTargets="BeforeBuild" Condition="'$(UseSharedCompilation)' != 'false'">

<Exec Command="npx gulp build" />
</Target>

<ItemGroup>
<PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" Version="2.21.0" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Server" Version="6.0.30" />
<PackageReference Include="Microsoft.Extensions.Logging.AzureAppServices" Version="6.0.13" />
<PackageReference Include="NEasyAuthMiddleware" Version="2.0.0" />
<PackageReference Include="System.Text.Json" Version="6.0.7" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\..\match\src\Piipan.Match\Piipan.Match.Api\Piipan.Match.Api.csproj" />
<ProjectReference Include="..\..\..\match\src\Piipan.Match\Piipan.Match.Client\Piipan.Match.Client.csproj" />
<ProjectReference Include="..\..\..\shared\src\Piipan.Shared\Piipan.Shared.csproj" />
<ProjectReference Include="..\..\..\states\src\Piipan.States.Client\Piipan.States.Client.csproj" />
<ProjectReference Include="..\Piipan.QueryTool.Client\Piipan.QueryTool.Client.csproj" />
</ItemGroup>

<ItemGroup>
<Folder Include="Models\" />
</ItemGroup>
</Project>

0 comments on commit c3809b9

Please sign in to comment.