mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-06 21:25:42 +12:00
Fix trim / publish
This commit is contained in:
parent
9e62fc8415
commit
a7c5048f14
8 changed files with 85 additions and 14 deletions
|
@ -44,7 +44,30 @@
|
||||||
<WarningLevel>3</WarningLevel>
|
<WarningLevel>3</WarningLevel>
|
||||||
<NoWarn>1701;1702;2026;IL2026</NoWarn>
|
<NoWarn>1701;1702;2026;IL2026</NoWarn>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
<PropertyGroup>
|
||||||
|
|
||||||
|
<TrimMode>partial</TrimMode>
|
||||||
|
<EnableTrimAnalyzer>false</EnableTrimAnalyzer>
|
||||||
|
<TrimmerRemoveSymbols>true</TrimmerRemoveSymbols>
|
||||||
|
|
||||||
|
<AutoreleasePoolSupport>false</AutoreleasePoolSupport>
|
||||||
|
<DebuggerSupport>false</DebuggerSupport>
|
||||||
|
<EnableUnsafeBinaryFormatterSerialization>false</EnableUnsafeBinaryFormatterSerialization>
|
||||||
|
<EnableUnsafeUTF7Encoding>false</EnableUnsafeUTF7Encoding>
|
||||||
|
<EventSourceSupport>false</EventSourceSupport>
|
||||||
|
<HttpActivityPropagationSupport>false</HttpActivityPropagationSupport>
|
||||||
|
<InvariantGlobalization>true</InvariantGlobalization>
|
||||||
|
<MetadataUpdaterSupport>false</MetadataUpdaterSupport>
|
||||||
|
<UseNativeHttpHandler>true</UseNativeHttpHandler>
|
||||||
|
<UseSystemResourceKeys>true</UseSystemResourceKeys>
|
||||||
|
|
||||||
|
<BuiltInComInteropSupport>false</BuiltInComInteropSupport>
|
||||||
|
<CustomResourceTypesSupport>false</CustomResourceTypesSupport>
|
||||||
|
<EnableCppCLIHostActivation>false</EnableCppCLIHostActivation>
|
||||||
|
<EnableUnsafeBinaryFormatterInDesigntimeLicenseContextSerialization>false</EnableUnsafeBinaryFormatterInDesigntimeLicenseContextSerialization>
|
||||||
|
<StartupHookSupport>false</StartupHookSupport>
|
||||||
|
|
||||||
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Windows|x86'">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Windows|x86'">
|
||||||
<RuntimeIdentifier>win-x86</RuntimeIdentifier>
|
<RuntimeIdentifier>win-x86</RuntimeIdentifier>
|
||||||
<Optimize>true</Optimize>
|
<Optimize>true</Optimize>
|
||||||
|
|
|
@ -31,5 +31,5 @@ using System.Runtime.InteropServices;
|
||||||
// You can specify all the values or you can default the Build and Revision Numbers
|
// You can specify all the values or you can default the Build and Revision Numbers
|
||||||
// by using the '*' as shown below:
|
// by using the '*' as shown below:
|
||||||
// [assembly: AssemblyVersion("1.0.*")]
|
// [assembly: AssemblyVersion("1.0.*")]
|
||||||
[assembly: AssemblyVersion("1.8.21.0")]
|
[assembly: AssemblyVersion("1.8.22.0")]
|
||||||
[assembly: AssemblyFileVersion("1.8.21.0")]
|
[assembly: AssemblyFileVersion("1.8.22.0")]
|
||||||
|
|
|
@ -11,10 +11,12 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
|
||||||
<TargetFramework>net7.0</TargetFramework>
|
<TargetFramework>net7.0</TargetFramework>
|
||||||
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
|
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
|
||||||
<SelfContained>True</SelfContained>
|
<SelfContained>True</SelfContained>
|
||||||
<!--<PublishSingleFile>True</PublishSingleFile>-->
|
<PublishSingleFile>True</PublishSingleFile>
|
||||||
<!--<PublishReadyToRun>True</PublishReadyToRun>-->
|
<PublishReadyToRun>True</PublishReadyToRun>
|
||||||
<PublishAot>true</PublishAot>
|
|
||||||
<!-- <PublishTrimmed>True</PublishTrimmed> -->
|
<PublishTrimmed>True</PublishTrimmed>
|
||||||
|
|
||||||
|
|
||||||
<DefineConstants>OS_WINDOWS;ARCH_X86_64</DefineConstants>
|
<DefineConstants>OS_WINDOWS;ARCH_X86_64</DefineConstants>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
</Project>
|
</Project>
|
|
@ -1,5 +1,5 @@
|
||||||
Package: hisp
|
Package: hisp
|
||||||
Version: 1.8.21
|
Version: 1.8.22
|
||||||
Depends: coreutils,systemd,mariadb-server,libsqlite3-dev,zlib1g-dev,libicu-dev,libkrb5-dev
|
Depends: coreutils,systemd,mariadb-server,libsqlite3-dev,zlib1g-dev,libicu-dev,libkrb5-dev
|
||||||
Maintainer: Li
|
Maintainer: Li
|
||||||
Homepage: https://islehorse.com
|
Homepage: https://islehorse.com
|
||||||
|
|
|
@ -57,7 +57,30 @@
|
||||||
<WarningLevel>3</WarningLevel>
|
<WarningLevel>3</WarningLevel>
|
||||||
<NoWarn>1701;1702;2026;IL2026</NoWarn>
|
<NoWarn>1701;1702;2026;IL2026</NoWarn>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
<PropertyGroup>
|
||||||
|
|
||||||
|
<TrimMode>partial</TrimMode>
|
||||||
|
<EnableTrimAnalyzer>false</EnableTrimAnalyzer>
|
||||||
|
<TrimmerRemoveSymbols>true</TrimmerRemoveSymbols>
|
||||||
|
|
||||||
|
<AutoreleasePoolSupport>false</AutoreleasePoolSupport>
|
||||||
|
<DebuggerSupport>false</DebuggerSupport>
|
||||||
|
<EnableUnsafeBinaryFormatterSerialization>false</EnableUnsafeBinaryFormatterSerialization>
|
||||||
|
<EnableUnsafeUTF7Encoding>false</EnableUnsafeUTF7Encoding>
|
||||||
|
<EventSourceSupport>false</EventSourceSupport>
|
||||||
|
<HttpActivityPropagationSupport>false</HttpActivityPropagationSupport>
|
||||||
|
<InvariantGlobalization>true</InvariantGlobalization>
|
||||||
|
<MetadataUpdaterSupport>false</MetadataUpdaterSupport>
|
||||||
|
<UseNativeHttpHandler>true</UseNativeHttpHandler>
|
||||||
|
<UseSystemResourceKeys>true</UseSystemResourceKeys>
|
||||||
|
|
||||||
|
<BuiltInComInteropSupport>false</BuiltInComInteropSupport>
|
||||||
|
<CustomResourceTypesSupport>false</CustomResourceTypesSupport>
|
||||||
|
<EnableCppCLIHostActivation>false</EnableCppCLIHostActivation>
|
||||||
|
<EnableUnsafeBinaryFormatterInDesigntimeLicenseContextSerialization>false</EnableUnsafeBinaryFormatterInDesigntimeLicenseContextSerialization>
|
||||||
|
<StartupHookSupport>false</StartupHookSupport>
|
||||||
|
|
||||||
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Windows|x86'">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Windows|x86'">
|
||||||
<RuntimeIdentifier>win-x86</RuntimeIdentifier>
|
<RuntimeIdentifier>win-x86</RuntimeIdentifier>
|
||||||
<Optimize>true</Optimize>
|
<Optimize>true</Optimize>
|
||||||
|
|
|
@ -30,8 +30,8 @@ using System.Runtime.InteropServices;
|
||||||
//
|
//
|
||||||
// You can specify all the values or you can default the Build and Revision Numbers
|
// You can specify all the values or you can default the Build and Revision Numbers
|
||||||
// by using the '*' as shown below:
|
// by using the '*' as shown below:
|
||||||
[assembly: AssemblyVersion("1.8.21.0")]
|
[assembly: AssemblyVersion("1.8.22.0")]
|
||||||
[assembly: AssemblyFileVersion("1.8.21.0")]
|
[assembly: AssemblyFileVersion("1.8.22.0")]
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,30 @@
|
||||||
<NoWarn>1701;1702;2026;IL2026</NoWarn>
|
<NoWarn>1701;1702;2026;IL2026</NoWarn>
|
||||||
<ApplicationIcon>icon.ico</ApplicationIcon>
|
<ApplicationIcon>icon.ico</ApplicationIcon>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
<PropertyGroup>
|
||||||
|
|
||||||
|
<TrimMode>partial</TrimMode>
|
||||||
|
<EnableTrimAnalyzer>false</EnableTrimAnalyzer>
|
||||||
|
<TrimmerRemoveSymbols>true</TrimmerRemoveSymbols>
|
||||||
|
|
||||||
|
<AutoreleasePoolSupport>false</AutoreleasePoolSupport>
|
||||||
|
<DebuggerSupport>false</DebuggerSupport>
|
||||||
|
<EnableUnsafeBinaryFormatterSerialization>false</EnableUnsafeBinaryFormatterSerialization>
|
||||||
|
<EnableUnsafeUTF7Encoding>false</EnableUnsafeUTF7Encoding>
|
||||||
|
<EventSourceSupport>false</EventSourceSupport>
|
||||||
|
<HttpActivityPropagationSupport>false</HttpActivityPropagationSupport>
|
||||||
|
<InvariantGlobalization>true</InvariantGlobalization>
|
||||||
|
<MetadataUpdaterSupport>false</MetadataUpdaterSupport>
|
||||||
|
<UseNativeHttpHandler>true</UseNativeHttpHandler>
|
||||||
|
<UseSystemResourceKeys>true</UseSystemResourceKeys>
|
||||||
|
|
||||||
|
<BuiltInComInteropSupport>false</BuiltInComInteropSupport>
|
||||||
|
<CustomResourceTypesSupport>false</CustomResourceTypesSupport>
|
||||||
|
<EnableCppCLIHostActivation>false</EnableCppCLIHostActivation>
|
||||||
|
<EnableUnsafeBinaryFormatterInDesigntimeLicenseContextSerialization>false</EnableUnsafeBinaryFormatterInDesigntimeLicenseContextSerialization>
|
||||||
|
<StartupHookSupport>false</StartupHookSupport>
|
||||||
|
|
||||||
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Windows|x86'">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Windows|x86'">
|
||||||
<RuntimeIdentifier>win-x86</RuntimeIdentifier>
|
<RuntimeIdentifier>win-x86</RuntimeIdentifier>
|
||||||
<Optimize>true</Optimize>
|
<Optimize>true</Optimize>
|
||||||
|
|
|
@ -30,8 +30,8 @@ using System.Runtime.InteropServices;
|
||||||
//
|
//
|
||||||
// You can specify all the values or you can default the Build and Revision Numbers
|
// You can specify all the values or you can default the Build and Revision Numbers
|
||||||
// by using the '*' as shown below:
|
// by using the '*' as shown below:
|
||||||
[assembly: AssemblyVersion("1.8.21.0")]
|
[assembly: AssemblyVersion("1.8.22.0")]
|
||||||
[assembly: AssemblyFileVersion("1.8.21.0")]
|
[assembly: AssemblyFileVersion("1.8.22.0")]
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue