Skip to content

Commit

Permalink
Add missing build events, icon, and funding.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
generalwrex committed Sep 29, 2020
1 parent ca9d360 commit aa65296
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 5 deletions.
12 changes: 12 additions & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# These are supported funding model platforms

github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
patreon: irse
open_collective: # Replace with a single Open Collective username
ko_fi: # Replace with a single Ko-fi username
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
liberapay: # Replace with a single Liberapay username
issuehunt: # Replace with a single IssueHunt username
otechie: # Replace with a single Otechie username
custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,8 @@
<StartupObject>IRSE.Program</StartupObject>
</PropertyGroup>
<ItemGroup>
<EmbeddedResource Include="Resources\TelerikCommon.dll" />
<EmbeddedResource Include="Resources\System.Net.Http.Formatting.dll" />
<EmbeddedResource Include="Resources\System.Web.Http.dll" />
<EmbeddedResource Include="Resources\Telerik.WinControls.Themes.FluentDark.dll" />
<EmbeddedResource Include="Resources\Telerik.WinControls.Themes.Office2013Dark.dll" />
<EmbeddedResource Include="Resources\Telerik.WinControls.UI.dll" />
<EmbeddedResource Include="GUI\Forms\Browser\BrowserForm.resx">
<DependentUpon>BrowserForm.cs</DependentUpon>
</EmbeddedResource>
Expand All @@ -80,7 +76,7 @@
<EmbeddedResource Include="Resources\NLog.dll" />
<EmbeddedResource Include="Resources\Octokit.dll" />
<None Include="App.config" />
<Content Include="Assets\hesicon.ico" />
<Content Include="Assets\irse_icon.ico" />
<Content Include="NLog.config">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
Expand Down Expand Up @@ -284,4 +280,28 @@
</PropertyGroup>
<Error Condition="!Exists('..\packages\GitInfo.2.0.34\build\GitInfo.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\GitInfo.2.0.34\build\GitInfo.targets'))" />
</Target>
<PropertyGroup>
<PostBuildEvent>;;@echo off

echo Running build event for $(ProjectName)..


xcopy "$(TargetDir)$(TargetFileName)" "$(ProjectDir)bin\IRSERelease\" /y
xcopy "$(TargetDir)$(TargetFileName).config" "$(ProjectDir)bin\IRSERelease\" /y

xcopy "$(TargetDir)l" "$(ProjectDir)Resources" /y
xcopy "$(TargetDir)NLog.dll" "$(ProjectDir)Resources" /y
xcopy "$(TargetDir)NLog.config" "$(ProjectDir)Resources" /y

echo $(ProjectName) files have been copied to "$(ProjectDir)bin\HESRelease\".

echo This is used to build the proper folder/file structure for releases to be zipped up.

REM Dont remove this line below! VS hates when you dont exit 0!
EXIT 0</PostBuildEvent>
</PropertyGroup>
<PropertyGroup>
<PreBuildEvent>
</PreBuildEvent>
</PropertyGroup>
</Project>

0 comments on commit aa65296

Please sign in to comment.