Skip to content

Commit 12c9961

Browse files
committed
update example
1 parent 73f7599 commit 12c9961

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

68 files changed

+4340
-2529
lines changed

BlazorCustomization/BlazorCustomization.csproj

Lines changed: 0 additions & 15 deletions
This file was deleted.
Lines changed: 22 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,22 @@
1-
2-
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio Version 16
4-
VisualStudioVersion = 16.0.31613.86
5-
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BlazorCustomization", "BlazorCustomization\BlazorCustomization.csproj", "{60FCE15A-4C4E-4409-9A1B-EAE8C9575C56}"
7-
EndProject
8-
Global
9-
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10-
Debug|Any CPU = Debug|Any CPU
11-
Release|Any CPU = Release|Any CPU
12-
EndGlobalSection
13-
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14-
{60FCE15A-4C4E-4409-9A1B-EAE8C9575C56}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15-
{60FCE15A-4C4E-4409-9A1B-EAE8C9575C56}.Debug|Any CPU.Build.0 = Debug|Any CPU
16-
{60FCE15A-4C4E-4409-9A1B-EAE8C9575C56}.Release|Any CPU.ActiveCfg = Release|Any CPU
17-
{60FCE15A-4C4E-4409-9A1B-EAE8C9575C56}.Release|Any CPU.Build.0 = Release|Any CPU
18-
EndGlobalSection
19-
GlobalSection(SolutionProperties) = preSolution
20-
HideSolutionNode = FALSE
21-
EndGlobalSection
22-
GlobalSection(ExtensibilityGlobals) = postSolution
23-
SolutionGuid = {1263012E-5E35-4FF1-AC8A-B7796489B627}
24-
EndGlobalSection
25-
EndGlobal
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.12.35506.116
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BlazorCustomization", "BlazorCustomization\BlazorCustomization.csproj", "{0866857D-7966-4031-A30A-C0D42634459D}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{0866857D-7966-4031-A30A-C0D42634459D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{0866857D-7966-4031-A30A-C0D42634459D}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{0866857D-7966-4031-A30A-C0D42634459D}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{0866857D-7966-4031-A30A-C0D42634459D}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
EndGlobal
Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
1-
2-
<Router AppAssembly="@typeof(Program).Assembly">
3-
<Found Context="routeData">
4-
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" />
5-
</Found>
6-
<NotFound>
7-
<LayoutView Layout="@typeof(MainLayout)">
8-
<p>Sorry, there's nothing at this address.</p>
9-
</LayoutView>
10-
</NotFound>
11-
</Router>
1+
<Router AppAssembly="@typeof(Program).Assembly">
2+
<Found Context="routeData">
3+
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" />
4+
</Found>
5+
<NotFound>
6+
<LayoutView Layout="@typeof(MainLayout)">
7+
<p>Sorry, there's nothing at this address.</p>
8+
</LayoutView>
9+
</NotFound>
10+
</Router>
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
<Project Sdk="Microsoft.NET.Sdk.Web">
2+
<PropertyGroup>
3+
<TargetFramework>net8.0</TargetFramework>
4+
<DefaultItemExcludes>Reports\**</DefaultItemExcludes>
5+
<ImplicitUsings>enable</ImplicitUsings>
6+
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
7+
<DockerfileFile>Dockerfile</DockerfileFile>
8+
<UserSecretsId>7bffbdbd-957d-40bc-92c8-236f2904aaee</UserSecretsId>
9+
<DockerfileContext>.</DockerfileContext>
10+
<DockerfileBuildArguments>--secret id=dxnuget,source=secrets.dev.yaml</DockerfileBuildArguments>
11+
</PropertyGroup>
12+
<ItemGroup>
13+
<Compile Remove="Reports\**" />
14+
<Content Remove="Reports\**" />
15+
<EmbeddedResource Remove="Reports\**" />
16+
<None Remove="Reports\**" />
17+
</ItemGroup>
18+
<ItemGroup>
19+
<None Remove="Data\nwind.db" />
20+
<None Remove="Data\reportsData.db" />
21+
</ItemGroup>
22+
<ItemGroup>
23+
<Content Include="Data\nwind.db">
24+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
25+
</Content>
26+
<Content Include="Data\reportsData.db">
27+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
28+
</Content>
29+
</ItemGroup>
30+
<ItemGroup>
31+
<Content Update="Data\nwind.json">
32+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
33+
</Content>
34+
</ItemGroup>
35+
<ItemGroup>
36+
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.11" />
37+
<PackageReference Include="System.Data.SQLite" Version="1.0.119" />
38+
<PackageReference Include="DevExpress.AspNetCore.Reporting" Version="24.2.5-pre-25041" />
39+
<PackageReference Include="DevExpress.Drawing.Skia" Version="24.2.5-pre-25041" />
40+
<PackageReference Include="DevExpress.Blazor.Reporting.Viewer" Version="24.2.5-pre-25041" />
41+
</ItemGroup>
42+
</Project>

0 commit comments

Comments
 (0)