Skip to content

Commit 64cd46b

Browse files
authored
Convert to CompressedStaticFiles.AspNet (#15)
* AspNetCore -> AspNet * Update NuGet packages * Change authors & readme * Adjust namespace from CompresedStaticFiles to CompresedStaticFiles.AspNet * Removed extraneous "\" in SDKRoot (in csproj with compression) * Simplify example csproj
1 parent 43a0db4 commit 64cd46b

40 files changed

+56
-68
lines changed

.github/workflows/GithubActionsRelease.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ env:
1919
buildPlatform: 'Any CPU'
2020
buildConfiguration: 'Release'
2121
outputCSFB: ${{github.workspace}}\siteCSFB
22-
projectCSFB: 'CompressedStaticFiles.AspNetCore/CompressedStaticFiles.AspNetCore.csproj'
23-
projectTest: 'CompressedStaticFiles.AspNetCore.Test/CompressedStaticFiles.AspNetCore.Test.csproj'
22+
projectCSFB: 'CompressedStaticFiles.AspNet/CompressedStaticFiles.AspNet.csproj'
23+
projectTest: 'CompressedStaticFiles.AspNet.Test/CompressedStaticFiles.AspNet.Test.csproj'
2424

2525
jobs:
2626

@@ -30,15 +30,15 @@ jobs:
3030
is-on-fork:
3131
name: Running on a fork?
3232
runs-on: ubuntu-latest
33-
if: github.repository != 'Material-Blazor/CompressedStaticFiles.AspNetCore'
33+
if: github.repository != 'Material-Blazor/CompressedStaticFiles.AspNet'
3434
steps:
3535
- name: Nothing to see here
3636
run: echo ""
3737

3838
is-on-material-blazor:
39-
name: Running on Material-Blazor/CompressedStaticFiles.AspNetCore?
39+
name: Running on Material-Blazor/CompressedStaticFiles.AspNet?
4040
runs-on: ubuntu-latest
41-
if: github.repository == 'Material-Blazor/CompressedStaticFiles.AspNetCore'
41+
if: github.repository == 'Material-Blazor/CompressedStaticFiles.AspNet'
4242
steps:
4343
- name: Nothing to see here
4444
run: echo ""

.github/workflows/GithubActionsWIP.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ env:
1313
buildPlatform: 'Any CPU'
1414
buildConfiguration: 'Release'
1515
outputCSFB: ${{github.workspace}}/siteCSFB
16-
projectCSFB: 'CompressedStaticFiles.AspNetCore/CompressedStaticFiles.AspNetCore.csproj'
17-
projectTest: 'CompressedStaticFiles.AspNetCore.Test/CompressedStaticFiles.AspNetCore.Test.csproj'
16+
projectCSFB: 'CompressedStaticFiles.AspNet/CompressedStaticFiles.AspNet.csproj'
17+
projectTest: 'CompressedStaticFiles.AspNet.Test/CompressedStaticFiles.AspNet.Test.csproj'
1818

1919
jobs:
2020

@@ -24,15 +24,15 @@ jobs:
2424
is-on-fork:
2525
name: Running on a fork?
2626
runs-on: ubuntu-latest
27-
if: github.repository != 'Material-Blazor/CompressedStaticFiles.AspNetCore'
27+
if: github.repository != 'Material-Blazor/CompressedStaticFiles.AspNet'
2828
steps:
2929
- name: Nothing to see here
3030
run: echo ""
3131

3232
is-on-material-blazor:
33-
name: Running on Material-Blazor/CompressedStaticFiles.AspNetCore?
33+
name: Running on Material-Blazor/CompressedStaticFiles.AspNet?
3434
runs-on: ubuntu-latest
35-
if: github.repository == 'Material-Blazor/CompressedStaticFiles.AspNetCore'
35+
if: github.repository == 'Material-Blazor/CompressedStaticFiles.AspNet'
3636
steps:
3737
- name: Nothing to see here
3838
run: echo ""

CompressedStaticFiles.AspNetCore.Tests/CompressedStaticFileMiddlewareTests.cs renamed to CompressedStaticFiles.AspNet.Tests/CompressedStaticFileMiddlewareTests.cs

File renamed without changes.

CompressedStaticFiles.AspNetCore.Tests/CompressedStaticFiles.AspNetCore.Tests.csproj renamed to CompressedStaticFiles.AspNet.Tests/CompressedStaticFiles.AspNet.Tests.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
<PrivateAssets>all</PrivateAssets>
1919
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2020
</PackageReference>
21-
<PackageReference Include="FluentAssertions" Version="6.7.0" />
22-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.3.1" />
21+
<PackageReference Include="FluentAssertions" Version="6.8.0" />
22+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.3.2" />
2323
<PackageReference Include="NSubstitute" Version="4.4.0" />
2424
<PackageReference Include="xunit" Version="2.4.2" />
2525
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
@@ -29,7 +29,7 @@
2929
</ItemGroup>
3030

3131
<ItemGroup>
32-
<ProjectReference Include="..\CompressedStaticFiles.AspNetCore\CompressedStaticFiles.AspNetCore.csproj" />
32+
<ProjectReference Include="..\CompressedStaticFiles.AspNet\CompressedStaticFiles.AspNet.csproj" />
3333
</ItemGroup>
3434

3535
<ItemGroup>

CompressedStaticFiles.AspNetCore.Tests/ImageCompressedStaticFileMiddlewareTests.cs renamed to CompressedStaticFiles.AspNet.Tests/ImageCompressedStaticFileMiddlewareTests.cs

File renamed without changes.

CompressedStaticFiles.AspNetCore.Tests/wwwroot/IMG_6067.avif renamed to CompressedStaticFiles.AspNet.Tests/wwwroot/IMG_6067.avif

File renamed without changes.

CompressedStaticFiles.AspNetCore.Tests/wwwroot/IMG_6067.jpg renamed to CompressedStaticFiles.AspNet.Tests/wwwroot/IMG_6067.jpg

File renamed without changes.

CompressedStaticFiles.AspNetCore.Tests/wwwroot/IMG_6067.webp renamed to CompressedStaticFiles.AspNet.Tests/wwwroot/IMG_6067.webp

File renamed without changes.

CompressedStaticFiles.AspNetCore.Tests/wwwroot/favicon.avif renamed to CompressedStaticFiles.AspNet.Tests/wwwroot/favicon.avif

File renamed without changes.

CompressedStaticFiles.AspNetCore.Tests/wwwroot/favicon.ico renamed to CompressedStaticFiles.AspNet.Tests/wwwroot/favicon.ico

File renamed without changes.

0 commit comments

Comments
 (0)