Skip to content

Commit

Permalink
Update 3
Browse files Browse the repository at this point in the history
  • Loading branch information
CatmanFan committed Feb 20, 2024
1 parent 5444889 commit 8848c97
Show file tree
Hide file tree
Showing 53 changed files with 1,648 additions and 1,127 deletions.
3 changes: 3 additions & 0 deletions FriishProduce/App.config
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@
<setting name="Default_N64_ROMC0" serializeAs="String">
<value>False</value>
</setting>
<setting name="DoNotShow_000" serializeAs="String">
<value>False</value>
</setting>
</FriishProduce.Properties.Settings>
</userSettings>
<runtime>
Expand Down
23 changes: 11 additions & 12 deletions FriishProduce/BannerPreview.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions FriishProduce/BannerPreviewForm.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

23 changes: 16 additions & 7 deletions FriishProduce/FriishProduce.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,9 @@
<Reference Include="Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<HintPath>..\packages\Newtonsoft.Json.13.0.3\lib\net45\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="Octokit, Version=9.1.2.0, Culture=neutral, PublicKeyToken=0be8860aee462442, processorArchitecture=MSIL">
<HintPath>..\packages\Octokit.9.1.2\lib\netstandard2.0\Octokit.dll</HintPath>
</Reference>
<Reference Include="Ookii.Dialogs.WinForms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=66aa232afad40158, processorArchitecture=MSIL">
<HintPath>..\packages\Ookii.Dialogs.WinForms.4.0.0\lib\net462\Ookii.Dialogs.WinForms.dll</HintPath>
</Reference>
Expand Down Expand Up @@ -138,6 +141,7 @@
<Compile Include="MainForm.Designer.cs">
<DependentUpon>MainForm.cs</DependentUpon>
</Compile>
<Compile Include="_classes\Update.cs" />
<EmbeddedResource Include="BannerPreview.resx">
<DependentUpon>BannerPreview.cs</DependentUpon>
</EmbeddedResource>
Expand Down Expand Up @@ -416,22 +420,22 @@
<ItemGroup>
<PublishFile Include="icon.ico">
<Visible>False</Visible>
<PublishState>Exclude</PublishState>
<IncludeHash>True</IncludeHash>
<Group>
</Group>
<TargetPath>
</TargetPath>
<PublishState>Exclude</PublishState>
<IncludeHash>True</IncludeHash>
<FileType>File</FileType>
</PublishFile>
<PublishFile Include="VistaMenu">
<Visible>False</Visible>
<PublishState>Exclude</PublishState>
<IncludeHash>True</IncludeHash>
<Group>
</Group>
<TargetPath>
</TargetPath>
<PublishState>Exclude</PublishState>
<IncludeHash>True</IncludeHash>
<FileType>Assembly</FileType>
</PublishFile>
</ItemGroup>
Expand All @@ -451,24 +455,29 @@
<Folder Include="Strings\es\" />
<Folder Include="Strings\fr\" />
<Folder Include="Strings\tr\" />
<Folder Include="_classes\ROM\" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<PropertyGroup>
<PreBuildEvent>
</PreBuildEvent>
</PropertyGroup>
<PropertyGroup>
<PostBuildEvent>cd "$(ProjectDir)Strings\"
<PostBuildEvent>cd "$(TargetDir)strings\"
for /R "%25cd%25" %25%25f in (.) do (call :delete %25%25f)

cd "$(ProjectDir)Strings\"
for /R "%25cd%25" %25%25f in (.) do (call :copy %25%25f %25cd%25)
goto :eof

:copy
if NOT %25~n1 == %25~n2 rmdir /s /q "$(TargetDir)strings\%25~n1\"
if NOT %25~n1 == %25~n2 mkdir "$(TargetDir)strings\%25~n1\"
if NOT %25~n1 == %25~n2 robocopy %251 $(TargetDir)strings\%25~n1\ 1&gt;nul
exit /b

:delete
rmdir /s /q "$(TargetDir)strings\%25~n1\"
exit /b

:eof</PostBuildEvent>
</PropertyGroup>
</Project>
Loading

0 comments on commit 8848c97

Please sign in to comment.