Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ bld/
# Uncomment if you have tasks that create the project's static files in wwwroot
#wwwroot/

# vscode
.vscode/

# Visual Studio 2017 auto generated files
Generated\ Files/

Expand Down
Binary file modified UnityLive2DExtractor/Libraries/AssetStudio.PInvoke.dll
Binary file not shown.
Binary file modified UnityLive2DExtractor/Libraries/AssetStudio.dll
Binary file not shown.
Binary file not shown.
Binary file added UnityLive2DExtractor/Libraries/System.Memory.dll
Binary file not shown.
Binary file modified UnityLive2DExtractor/Libraries/Texture2DDecoderWrapper.dll
Binary file not shown.
Binary file modified UnityLive2DExtractor/Libraries/x64/Texture2DDecoderNative.dll
Binary file not shown.
Binary file modified UnityLive2DExtractor/Libraries/x86/Texture2DDecoderNative.dll
Binary file not shown.
18 changes: 14 additions & 4 deletions UnityLive2DExtractor/UnityLive2DExtractor.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,22 @@
<Reference Include="AssetStudio.PInvoke">
<HintPath>Libraries\AssetStudio.PInvoke.dll</HintPath>
</Reference>
<Reference Include="Newtonsoft.Json, Version=12.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<HintPath>..\packages\Newtonsoft.Json.12.0.3\lib\net45\Newtonsoft.Json.dll</HintPath>
<Reference Include="K4os.Compression.LZ4">
<HintPath>Libraries\K4os.Compression.LZ4.dll</HintPath>
</Reference>
<Reference Include="Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<HintPath>..\packages\Newtonsoft.Json.13.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Drawing" />
<Reference Include="System.Memory, Version=4.0.1.2, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>Libraries\System.Memory.dll</HintPath>
</Reference>
<Reference Include="System.Runtime.CompilerServices.Unsafe, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\System.Runtime.CompilerServices.Unsafe.6.0.0\lib\net461\System.Runtime.CompilerServices.Unsafe.dll</HintPath>
</Reference>
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
Expand Down Expand Up @@ -73,11 +83,11 @@
<None Include="packages.config" />
</ItemGroup>
<ItemGroup>
<ContentWithTargetPath Include="Libraries\x64\Texture2DDecoderNative.dll">
<ContentWithTargetPath Include="Libraries\x64\Texture2DDecoderNative.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<TargetPath>x64\Texture2DDecoderNative.dll</TargetPath>
</ContentWithTargetPath>
<ContentWithTargetPath Include="Libraries\x86\Texture2DDecoderNative.dll">
<ContentWithTargetPath Include="Libraries\x86\Texture2DDecoderNative.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<TargetPath>x86\Texture2DDecoderNative.dll</TargetPath>
</ContentWithTargetPath>
Expand Down
3 changes: 2 additions & 1 deletion UnityLive2DExtractor/packages.config
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Newtonsoft.Json" version="12.0.3" targetFramework="net472" />
<package id="Newtonsoft.Json" version="13.0.1" targetFramework="net472" />
<package id="System.Runtime.CompilerServices.Unsafe" version="6.0.0" targetFramework="net472" />
</packages>