Skip to content

Commit

Permalink
Update build scripts;
Browse files Browse the repository at this point in the history
Add app icons;
  • Loading branch information
agc93 committed Jul 24, 2021
1 parent 380904a commit 6277ebf
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,7 @@ Task("Publish-Runtime")
OutputDirectory = runtimeDir,
PublishSingleFile = true,
PublishTrimmed = true,
IncludeNativeLibrariesForSelfExtract = true,
ArgumentCustomization = args => args.Append($"/p:Version={packageVersion}")
};
DotNetCorePublish(projPath, settings);
Expand Down
5 changes: 5 additions & 0 deletions src/InstallerCreator/InstallerCreator.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
<TargetFramework>netcoreapp3.1</TargetFramework>
<AssemblyName>acmi</AssemblyName>
<DebugType>embedded</DebugType>
<ApplicationIcon>acmi.ico</ApplicationIcon>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)' == 'Publish'">
Expand All @@ -30,4 +31,8 @@
<ProjectReference Include="..\AceCore\AceCore.csproj" />
</ItemGroup>

<ItemGroup>
<Content Include="acmi.ico" />
</ItemGroup>

</Project>
Binary file added src/InstallerCreator/acmi.ico
Binary file not shown.
5 changes: 5 additions & 0 deletions src/PackCreator/PackCreator.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
<TargetFramework>net5.0</TargetFramework>
<AssemblyName>acmi-pack</AssemblyName>
<DebugType>embedded</DebugType>
<ApplicationIcon>acmi-pack.ico</ApplicationIcon>
<!-- <ApplicationManifest>app.manifest</ApplicationManifest> -->
</PropertyGroup>

Expand All @@ -29,4 +30,8 @@
<ProjectReference Include="..\AceCore\AceCore.csproj" />
</ItemGroup>

<ItemGroup>
<Content Include="acmi-pack.ico" />
</ItemGroup>

</Project>
Binary file added src/PackCreator/acmi-pack.ico
Binary file not shown.

0 comments on commit 6277ebf

Please sign in to comment.