Skip to content

Commit 1ce23d4

Browse files
committed
2
1 parent d7a4c62 commit 1ce23d4

11 files changed

+11519
-187
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -361,4 +361,5 @@ MigrationBackup/
361361

362362
# Fody - auto-generated XML schema
363363
FodyWeavers.xsd
364-
Debug2/
364+
Debug2/utf8
365+
Debug/
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
E:/Bright/LimbusLocalize/Localize
2+
LLC GitHub仓库Localize目录
3+
支持相对和绝对目录
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
{
2+
"runtimeTarget": {
3+
"name": ".NETCoreApp,Version=v8.0",
4+
"signature": ""
5+
},
6+
"compilationOptions": {},
7+
"targets": {
8+
".NETCoreApp,Version=v8.0": {
9+
"LLC_Paratranz_Util/1.0.0": {
10+
"dependencies": {
11+
"Newtonsoft.Json": "13.0.0.0"
12+
},
13+
"runtime": {
14+
"LLC_Paratranz_Util.dll": {}
15+
}
16+
},
17+
"Newtonsoft.Json/13.0.0.0": {
18+
"runtime": {
19+
"Newtonsoft.Json.dll": {
20+
"assemblyVersion": "13.0.0.0",
21+
"fileVersion": "13.0.3.27908"
22+
}
23+
}
24+
}
25+
}
26+
},
27+
"libraries": {
28+
"LLC_Paratranz_Util/1.0.0": {
29+
"type": "project",
30+
"serviceable": false,
31+
"sha512": ""
32+
},
33+
"Newtonsoft.Json/13.0.0.0": {
34+
"type": "reference",
35+
"serviceable": false,
36+
"sha512": ""
37+
}
38+
}
39+
}

Debug2/LLC_Paratranz_Util.dll

33 KB
Binary file not shown.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8" ?>
2+
<configuration>
3+
<startup>
4+
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8"/>
5+
</startup>
6+
</configuration>

Debug2/LLC_Paratranz_Util.exe

136 KB
Binary file not shown.
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"runtimeOptions": {
3+
"tfm": "net8.0",
4+
"framework": {
5+
"name": "Microsoft.NETCore.App",
6+
"version": "8.0.0"
7+
},
8+
"configProperties": {
9+
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
10+
}
11+
}
12+
}

Debug2/Newtonsoft.Json.dll

695 KB
Binary file not shown.

Debug2/Newtonsoft.Json.xml

Lines changed: 11363 additions & 0 deletions
Large diffs are not rendered by default.

src/LLC_Paratranz_Util.csproj

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,25 @@
1111
<DebugType>embedded</DebugType>
1212
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
1313
</PropertyGroup>
14-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
14+
15+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
1516
<DebugSymbols>true</DebugSymbols>
16-
<Optimize>false</Optimize>
17+
<OutputPath>..\Debug2\</OutputPath>
18+
<DebugType>full</DebugType>
1719
</PropertyGroup>
18-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
20+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
21+
<OutputPath>..\Release\</OutputPath>
1922
<Optimize>true</Optimize>
23+
<DebugType>pdbonly</DebugType>
2024
</PropertyGroup>
2125
<ItemGroup>
22-
<PackageReference Include="Newtonsoft.Json" Version="13.0.3"/>
26+
<Reference Include="Newtonsoft.Json">
27+
<HintPath>..\Debug2\Newtonsoft.Json.dll</HintPath>
28+
</Reference>
2329
</ItemGroup>
30+
<Target Name="CopyFile" AfterTargets="build">
31+
<Message Text="Copying Release files..." Importance="high" Condition="'$(Configuration)' == 'Release'"/>
32+
<Copy SourceFiles="$(OutputPath)$(AssemblyName).dll" DestinationFolder="$(OutputPath)..\..\LLT_Para_To_Git\lib" Condition="'$(Configuration)' == 'Release'"/>
33+
<Copy SourceFiles="$(OutputPath)$(AssemblyName).exe" DestinationFolder="$(OutputPath)..\..\LLT_Para_To_Git\lib" Condition="'$(Configuration)' == 'Release'"/>
34+
</Target>
2435
</Project>

0 commit comments

Comments
 (0)