Merge pull request #13 from josephmoresena/master
Update to ILCompiler 7.0.0-*
This commit is contained in:
commit
d400f93339
1
.gitignore
vendored
1
.gitignore
vendored
@ -348,3 +348,4 @@ MigrationBackup/
|
||||
|
||||
# Ionide (cross platform F# VS Code tools) working folder
|
||||
.ionide/
|
||||
.DS_Store
|
||||
|
@ -1,9 +1,10 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<!-- if you want to check exceptions, change this to "Exe" and start your app from the console -->
|
||||
<OutputType>WinExe</OutputType>
|
||||
<TargetFramework>net5.0</TargetFramework>
|
||||
<Platforms>AnyCPU;x64</Platforms>
|
||||
<ApplicationIcon>app.ico</ApplicationIcon>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup>
|
||||
@ -33,10 +34,11 @@
|
||||
<EmbeddedResource Include="windows.png" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Avalonia" Version="0.10.7" />
|
||||
<PackageReference Include="Avalonia.Desktop" Version="0.10.7" />
|
||||
<PackageReference Include="Avalonia.ReactiveUI" Version="0.10.7" />
|
||||
<PackageReference Include="Microsoft.DotNet.ILCompiler" Version="6.0.0-*" />
|
||||
<PackageReference Include="Avalonia" Version="0.10.8" />
|
||||
<PackageReference Include="Avalonia.Desktop" Version="0.10.8" />
|
||||
<PackageReference Include="Avalonia.ReactiveUI" Version="0.10.8" />
|
||||
<PackageReference Include="Dotnet.Bundle" Version="*" Condition="$(RuntimeIdentifier.StartsWith('osx'))" />
|
||||
<PackageReference Include="Microsoft.DotNet.ILCompiler" Version="7.0.0-*" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<!-- Avalonia relies heavily on reflection. Describe types reflected upon here. -->
|
||||
@ -49,5 +51,30 @@
|
||||
<None Update="dotnet.png" CopyToPublishDirectory="PreserveNewest">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</None>
|
||||
<None Update="app.icns" CopyToPublishDirectory="PreserveNewest" Condition="$(RuntimeIdentifier.StartsWith('osx'))">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</None>
|
||||
</ItemGroup>
|
||||
<PropertyGroup Condition="$(RuntimeIdentifier.StartsWith('osx'))">
|
||||
<CFBundleName>$(AssemblyName)</CFBundleName>
|
||||
<CFBundleDisplayName>$(AssemblyName)</CFBundleDisplayName>
|
||||
<CFBundleIdentifier>com.$(username).$(AssemblyName)</CFBundleIdentifier>
|
||||
<CFBundleVersion>1.0.0</CFBundleVersion>
|
||||
<CFBundlePackageType>APPL</CFBundlePackageType>
|
||||
<!--<CFBundleSignature>????</CFBundleSignature>-->
|
||||
<CFBundleExecutable>$(AssemblyName)</CFBundleExecutable>
|
||||
<CFBundleIconFile>app.icns</CFBundleIconFile>
|
||||
<NSPrincipalClass>NSApplication</NSPrincipalClass>
|
||||
<NSHighResolutionCapable>true</NSHighResolutionCapable>
|
||||
<CFBundleShortVersionString>1.0</CFBundleShortVersionString>
|
||||
<!-- Optional -->
|
||||
<NSRequiresAquaSystemAppearance>true</NSRequiresAquaSystemAppearance>
|
||||
</PropertyGroup>
|
||||
<Target Name="ConfigureTrimming" BeforeTargets="PrepareForILLink">
|
||||
<ItemGroup>
|
||||
<ManagedAssemblyToLink>
|
||||
<TrimMode>link</TrimMode>
|
||||
</ManagedAssemblyToLink>
|
||||
</ItemGroup>
|
||||
</Target>
|
||||
</Project>
|
||||
|
BIN
src/app.icns
Normal file
BIN
src/app.icns
Normal file
Binary file not shown.
9
test.command
Executable file
9
test.command
Executable file
@ -0,0 +1,9 @@
|
||||
#!/bin/bash
|
||||
dir=${0%/*}
|
||||
if [ -d "$dir" ]; then
|
||||
cd "$dir"
|
||||
fi
|
||||
rm -f src/packages.lock.json
|
||||
dotnet publish -r osx-x64 -c release /p:RestoreLockedMode=true -t:BundleApp
|
||||
rm src/bin/Release/net*/osx-x64/publish/*.icns
|
||||
strip src/bin/Release/net*/osx-x64/publish/AvaloniaCoreRTDemo.app/Contents/MacOS/AvaloniaCoreRTDemo
|
Loading…
x
Reference in New Issue
Block a user