-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMelodee.Blazor.csproj
More file actions
111 lines (94 loc) · 4.51 KB
/
Copy pathMelodee.Blazor.csproj
File metadata and controls
111 lines (94 loc) · 4.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
<AssemblyName>server</AssemblyName>
<RootNamespace>Melodee.Blazor</RootNamespace>
<Deterministic>false</Deterministic>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<IncludeSourceRevisionInInformationalVersion>true</IncludeSourceRevisionInInformationalVersion>
<RuntimeIdentifiers>win-x64;osx-x64;linux-x64</RuntimeIdentifiers>
<NoWarn>$(NoWarn);NU1507;IL2026;CS1591</NoWarn>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<!-- Auto-incrementing version -->
<VersionPrefix>1.7.0</VersionPrefix>
<VersionSuffix>build$([System.DateTime]::UtcNow.ToString("yyyyMMddHHmmss"))</VersionSuffix>
<AssemblyVersion>$(VersionPrefix).0</AssemblyVersion>
<FileVersion>$(VersionPrefix).0</FileVersion>
<InformationalVersion>$(VersionPrefix)+$(VersionSuffix)</InformationalVersion>
<!-- Performance optimizations for Lighthouse recommendations -->
<!-- Enable Blazor WebAssembly optimizations -->
<BlazorEnableCompression>true</BlazorEnableCompression>
<!-- Enable minification in release builds -->
<BlazorEnableTimeZoneSupport>false</BlazorEnableTimeZoneSupport>
<!-- Tree trimming for smaller bundles -->
<PublishTrimmed Condition="'$(Configuration)' == 'Release'">true</PublishTrimmed>
<TrimMode Condition="'$(Configuration)' == 'Release'">link</TrimMode>
<!-- Enable Ready2Run for faster startup -->
<PublishReadyToRun Condition="$([MSBuild]::IsOSPlatform('Windows'))">true</PublishReadyToRun>
<!-- Enable single file deployment for smaller footprint -->
<PublishSingleFile Condition="'$(Configuration)' == 'Release'">false</PublishSingleFile>
</PropertyGroup>
<PropertyGroup>
<!-- Avoid trim analyzer warnings during normal builds; analyze at publish time -->
<EnableTrimAnalyzer>false</EnableTrimAnalyzer>
</PropertyGroup>
<!-- Disable OpenAPI XML comment source generator to fix generic type issues -->
<Target Name="DisableCompileTimeOpenApiXmlGenerator" BeforeTargets="CoreCompile">
<ItemGroup>
<Analyzer Remove="@(Analyzer)" Condition="'%(Filename)' == 'Microsoft.AspNetCore.OpenApi.SourceGenerators'" />
</ItemGroup>
</Target>
<ItemGroup>
<ProjectReference Include="..\Melodee.Common\Melodee.Common.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Asp.Versioning.Mvc" />
<PackageReference Include="Asp.Versioning.Mvc.ApiExplorer" />
<PackageReference Include="AuralizeBlazor" />
<PackageReference Include="HtmlSanitizer" />
<PackageReference Include="MailKit" />
<PackageReference Include="Markdig" />
<PackageReference Include="Microsoft.AspNetCore.OpenApi" />
<PackageReference Include="Scalar.AspNetCore" />
<PackageReference Include="PSC.Blazor.Components.MarkdownEditor" />
<PackageReference Include="Radzen.Blazor" />
<PackageReference Include="Asp.Versioning.Http" />
<PackageReference Include="Blazored.SessionStorage" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" />
<PackageReference Include="Microsoft.IdentityModel.Tokens" />
<PackageReference Include="Quartz.AspNetCore" />
<PackageReference Include="Quartz.Jobs" />
<PackageReference Include="Quartz.Plugins.TimeZoneConverter" />
<PackageReference Include="Quartz.Serialization.SystemTextJson" />
<PackageReference Include="Rebus" />
<PackageReference Include="Rebus.ServiceProvider" />
<PackageReference Include="Serilog.Formatting.Compact" />
<PackageReference Include="Serilog" />
<PackageReference Include="Serilog.AspNetCore" />
<PackageReference Include="Serilog.Settings.AppSettings" />
<PackageReference Include="Serilog.Sinks.Console" />
<PackageReference Include="Serilog.Sinks.File" />
<PackageReference Include="System.IdentityModel.Tokens.Jwt" />
<PackageReference Include="System.Reactive" />
</ItemGroup>
<ItemGroup>
<Compile Remove="Logs\**" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Remove="Logs\**" />
</ItemGroup>
<ItemGroup>
<Content Remove="Logs\**" />
</ItemGroup>
<ItemGroup>
<None Remove="Logs\**" />
</ItemGroup>
<ItemGroup>
<Folder Include="wwwroot\images\backgrounds\" />
<Folder Include="wwwroot\images\icons\" />
</ItemGroup>
</Project>