mirror of
https://github.com/chev2/botw-toolset.git
synced 2025-10-30 08:12:17 +00:00
Program dependencies, csproj changes
Add System.Drawing.Common as a dependency
This commit is contained in:
parent
e8332067d1
commit
79fa8f8fae
2 changed files with 50 additions and 4 deletions
|
|
@ -37,6 +37,10 @@
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Reference Include="System" />
|
<Reference Include="System" />
|
||||||
<Reference Include="System.Data" />
|
<Reference Include="System.Data" />
|
||||||
|
<Reference Include="System.Drawing" />
|
||||||
|
<Reference Include="System.Drawing.Common, Version=4.0.0.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\packages\System.Drawing.Common.5.0.0\lib\net461\System.Drawing.Common.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
<Reference Include="System.Xml" />
|
<Reference Include="System.Xml" />
|
||||||
<Reference Include="Microsoft.CSharp" />
|
<Reference Include="Microsoft.CSharp" />
|
||||||
<Reference Include="System.Core" />
|
<Reference Include="System.Core" />
|
||||||
|
|
@ -55,9 +59,31 @@
|
||||||
<Generator>MSBuild:Compile</Generator>
|
<Generator>MSBuild:Compile</Generator>
|
||||||
<SubType>Designer</SubType>
|
<SubType>Designer</SubType>
|
||||||
</ApplicationDefinition>
|
</ApplicationDefinition>
|
||||||
|
<Compile Include="Control\TabRSTB.xaml.cs">
|
||||||
|
<DependentUpon>TabRSTB.xaml</DependentUpon>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="Control\TabSARC.xaml.cs">
|
||||||
|
<DependentUpon>TabSARC.xaml</DependentUpon>
|
||||||
|
</Compile>
|
||||||
<Compile Include="Control\TabTSCB.xaml.cs">
|
<Compile Include="Control\TabTSCB.xaml.cs">
|
||||||
<DependentUpon>TabTSCB.xaml</DependentUpon>
|
<DependentUpon>TabTSCB.xaml</DependentUpon>
|
||||||
</Compile>
|
</Compile>
|
||||||
|
<Page Include="Control\TabRSTB.xaml">
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
<Generator>MSBuild:Compile</Generator>
|
||||||
|
</Page>
|
||||||
|
<Page Include="Control\TabSARC.xaml">
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
<Generator>MSBuild:Compile</Generator>
|
||||||
|
</Page>
|
||||||
|
<Page Include="Control\TabYaz0.xaml">
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
<Generator>MSBuild:Compile</Generator>
|
||||||
|
</Page>
|
||||||
|
<Page Include="Control\TSCBAreaExpander.xaml">
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
<Generator>MSBuild:Compile</Generator>
|
||||||
|
</Page>
|
||||||
<Page Include="Dashboard.xaml">
|
<Page Include="Dashboard.xaml">
|
||||||
<Generator>MSBuild:Compile</Generator>
|
<Generator>MSBuild:Compile</Generator>
|
||||||
<SubType>Designer</SubType>
|
<SubType>Designer</SubType>
|
||||||
|
|
@ -66,17 +92,31 @@
|
||||||
<DependentUpon>App.xaml</DependentUpon>
|
<DependentUpon>App.xaml</DependentUpon>
|
||||||
<SubType>Code</SubType>
|
<SubType>Code</SubType>
|
||||||
</Compile>
|
</Compile>
|
||||||
|
<Compile Include="Control\TabYaz0.xaml.cs">
|
||||||
|
<DependentUpon>TabYaz0.xaml</DependentUpon>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="Control\TSCBAreaExpander.xaml.cs">
|
||||||
|
<DependentUpon>TSCBAreaExpander.xaml</DependentUpon>
|
||||||
|
</Compile>
|
||||||
<Compile Include="Debugging\BOTWConsole.cs" />
|
<Compile Include="Debugging\BOTWConsole.cs" />
|
||||||
|
<Compile Include="Exceptions\InvalidMagicException.cs" />
|
||||||
|
<Compile Include="IO\BinaryWriterBig.cs" />
|
||||||
|
<Compile Include="IO\BinaryReaderBig.cs" />
|
||||||
<Compile Include="IO\EXTM\Grass.cs" />
|
<Compile Include="IO\EXTM\Grass.cs" />
|
||||||
<Compile Include="IO\EXTM\GrassColor.cs" />
|
|
||||||
<Compile Include="IO\EXTM\Water.cs" />
|
<Compile Include="IO\EXTM\Water.cs" />
|
||||||
<Compile Include="IO\EXTM\WaterColor.cs" />
|
<Compile Include="IO\GridColors.cs" />
|
||||||
|
<Compile Include="IO\HGHT.cs" />
|
||||||
|
<Compile Include="IO\MATE.cs" />
|
||||||
|
<Compile Include="IO\SARC\SARC.cs" />
|
||||||
|
<Compile Include="IO\SARC\SFAT.cs" />
|
||||||
|
<Compile Include="IO\SARC\SFATNode.cs" />
|
||||||
|
<Compile Include="IO\SARC\SFNT.cs" />
|
||||||
<Compile Include="IO\TSCB\AreaInfo.cs" />
|
<Compile Include="IO\TSCB\AreaInfo.cs" />
|
||||||
|
<Compile Include="IO\TSCB\GridConverter.cs" />
|
||||||
<Compile Include="IO\TSCB\TSCB.cs" />
|
<Compile Include="IO\TSCB\TSCB.cs" />
|
||||||
<Compile Include="IO\TSCB\TSCBInfo.cs" />
|
|
||||||
<Compile Include="IO\TSCB\MaterialInfo.cs" />
|
<Compile Include="IO\TSCB\MaterialInfo.cs" />
|
||||||
|
<Compile Include="IO\Yaz0\Yaz0.cs" />
|
||||||
<Compile Include="MathExt.cs" />
|
<Compile Include="MathExt.cs" />
|
||||||
<Compile Include="Color.cs" />
|
|
||||||
<Compile Include="Dashboard.xaml.cs">
|
<Compile Include="Dashboard.xaml.cs">
|
||||||
<DependentUpon>Dashboard.xaml</DependentUpon>
|
<DependentUpon>Dashboard.xaml</DependentUpon>
|
||||||
<SubType>Code</SubType>
|
<SubType>Code</SubType>
|
||||||
|
|
@ -104,6 +144,7 @@
|
||||||
<Generator>ResXFileCodeGenerator</Generator>
|
<Generator>ResXFileCodeGenerator</Generator>
|
||||||
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
|
<None Include="packages.config" />
|
||||||
<None Include="Properties\Settings.settings">
|
<None Include="Properties\Settings.settings">
|
||||||
<Generator>SettingsSingleFileGenerator</Generator>
|
<Generator>SettingsSingleFileGenerator</Generator>
|
||||||
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
|
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
|
||||||
|
|
@ -115,5 +156,6 @@
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Resource Include="Resources\Icons\*.png" />
|
<Resource Include="Resources\Icons\*.png" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
<ItemGroup />
|
||||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||||
</Project>
|
</Project>
|
||||||
4
botw-toolset/packages.config
Normal file
4
botw-toolset/packages.config
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<packages>
|
||||||
|
<package id="System.Drawing.Common" version="5.0.0" targetFramework="net48" />
|
||||||
|
</packages>
|
||||||
Loading…
Add table
Reference in a new issue