Skip to content

Commit

Permalink
Add application icon, build shit correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
jvyden committed Jun 15, 2022
1 parent 447ca7b commit e63532e
Show file tree
Hide file tree
Showing 10 changed files with 14 additions and 0 deletions.
Binary file added UnionPatcher.Cli/Icon64.ico
Binary file not shown.
1 change: 1 addition & 0 deletions UnionPatcher.Cli/UnionPatcher.Cli.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AssemblyName>UnionPatcher</AssemblyName>
<ApplicationIcon>Icon64.ico</ApplicationIcon>
</PropertyGroup>

<ItemGroup>
Expand Down
Binary file added UnionPatcher.Gui.Linux/Icon64.ico
Binary file not shown.
1 change: 1 addition & 0 deletions UnionPatcher.Gui.Linux/UnionPatcher.Gui.Linux.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
<RuntimeIdentifiers>linux-x64</RuntimeIdentifiers>
<AssemblyName>LBPUnion.UnionPatcher.Gui.Linux</AssemblyName>
<RootNamespace>LBPUnion.UnionPatcher.Gui.Linux</RootNamespace>
<ApplicationIcon>Icon64.ico</ApplicationIcon>
</PropertyGroup>

<ItemGroup>
Expand Down
Binary file added UnionPatcher.Gui.MacOS/Icon64.ico
Binary file not shown.
1 change: 1 addition & 0 deletions UnionPatcher.Gui.MacOS/UnionPatcher.Gui.MacOS.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
<RuntimeIdentifiers>osx-x64</RuntimeIdentifiers>
<AssemblyName>LBPUnion.UnionPatcher.Gui.MacOS</AssemblyName>
<RootNamespace>LBPUnion.UnionPatcher.Gui.MacOS</RootNamespace>
<ApplicationIcon>Icon64.ico</ApplicationIcon>
</PropertyGroup>

<ItemGroup>
Expand Down
Binary file added UnionPatcher.Gui.Windows/Icon64.ico
Binary file not shown.
1 change: 1 addition & 0 deletions UnionPatcher.Gui.Windows/UnionPatcher.Gui.Windows.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
<TargetFramework>net6.0-windows</TargetFramework>
<RootNamespace>LBPUnion.UnionPatcher.Gui.Windows</RootNamespace>
<AssemblyName>LBPUnion.UnionPatcher.Gui.Windows</AssemblyName>
<ApplicationIcon>Icon64.ico</ApplicationIcon>
</PropertyGroup>

<ItemGroup>
Expand Down
Binary file added UnionPatcher/Icon64.ico
Binary file not shown.
10 changes: 10 additions & 0 deletions UnionPatcher/UnionPatcher.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,20 @@
<Configurations>Debug;Release;Windows</Configurations>
<TargetFramework>net6.0</TargetFramework>
<Platforms>AnyCPU</Platforms>
<ApplicationIcon>Icon64.ico</ApplicationIcon>
</PropertyGroup>

<PropertyGroup Condition=" '$(Configuration)' == 'Windows' ">
<SelfContained>true</SelfContained>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
</PropertyGroup>

<ItemGroup>
<None Update="scetool\**">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="data\**">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>

0 comments on commit e63532e

Please sign in to comment.