2024-03-28 21:26:48 +00:00
<Project Sdk= "Microsoft.NET.Sdk.Web" >
<PropertyGroup >
<TargetFramework > net8.0</TargetFramework>
<Nullable > enable</Nullable>
2024-05-04 09:19:55 +00:00
<WarningsAsErrors > CS8600;CS8602;CS8603</WarningsAsErrors>
2024-03-28 21:26:48 +00:00
<ImplicitUsings > enable</ImplicitUsings>
2024-04-05 20:21:44 +00:00
<RootNamespace > AIStudio</RootNamespace>
<AssemblyName > mindworkAIStudio</AssemblyName>
2024-05-10 19:52:19 +00:00
<PublishSingleFile > true</PublishSingleFile> <!-- Publish as single file -->
<SelfContained > true</SelfContained> <!-- Publish as self - contained; requires no .NET runtime installed on the target machine -->
<IncludeNativeLibrariesForSelfExtract > true</IncludeNativeLibrariesForSelfExtract> <!-- Include native libraries for self - extract -->
<GenerateEmbeddedFilesManifest > true</GenerateEmbeddedFilesManifest> <!-- Generate embedded files manifest -->
<PublishTrimmed > true</PublishTrimmed> <!-- Publish with trimming, to reduce size -->
<TrimMode > partial</TrimMode> <!-- Trim unused assemblies, but keep all assemblies referenced by the project -->
<TrimmerRemoveSymbols > true</TrimmerRemoveSymbols> <!-- Remove debug symbols -->
<EnableUnsafeBinaryFormatterSerialization > false</EnableUnsafeBinaryFormatterSerialization> <!-- Remove unsafe binary formatter serialization -->
<EnableUnsafeUTF7Encoding > false</EnableUnsafeUTF7Encoding> <!-- Remove unsafe UTF7 encoding -->
<JsonSerializerIsReflectionEnabledByDefault > true</JsonSerializerIsReflectionEnabledByDefault> <!-- Enable reflection for JSON serialization -->
<SuppressTrimAnalysisWarnings > true</SuppressTrimAnalysisWarnings> <!-- Suppress trim analysis warnings -->
<NoWarn > IL2026</NoWarn> <!-- Suppress warning IL2026: Usage of methods marked as RequiresUnreferencedCode. None issue here, since we use trim mode partial, though. -->
2024-03-28 21:26:48 +00:00
</PropertyGroup>
<ItemGroup >
2024-05-10 19:52:19 +00:00
<!-- Remove launchSettings.json from the project -->
2024-03-28 21:26:48 +00:00
<None Remove= "Properties\launchSettings.json" />
</ItemGroup>
2024-04-05 14:16:33 +00:00
<ItemGroup >
2024-05-10 19:52:19 +00:00
<!-- Embed all files in wwwroot folder -->
<EmbeddedResource Include= "wwwroot\**" CopyToOutputDirectory= "PreserveNewest" />
</ItemGroup>
<ItemGroup >
<PackageReference Include= "Microsoft.Extensions.FileProviders.Embedded" Version= "8.0.4" />
2024-04-05 14:16:33 +00:00
<PackageReference Include= "MudBlazor" Version= "6.19.1" />
2024-05-13 16:42:34 +00:00
<PackageReference Include= "MudBlazor.Markdown" Version= "0.1.3" />
2024-04-05 14:16:33 +00:00
</ItemGroup>
2024-03-28 21:26:48 +00:00
</Project>