mirror of
https://e.coding.net/circlecloud/CTZLauncher.git
synced 2025-11-24 21:36:06 +00:00
合并库文件到EXE...
This commit is contained in:
@@ -1,10 +1,8 @@
|
|||||||
|
|
||||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||||
# Visual Studio 2013
|
# Visual Studio 14
|
||||||
VisualStudioVersion = 12.0.21005.1
|
VisualStudioVersion = 14.0.23107.0
|
||||||
MinimumVisualStudioVersion = 10.0.40219.1
|
MinimumVisualStudioVersion = 10.0.40219.1
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "KMCCC", "KMCCC.Shared\KMCCC.csproj", "{52E292BB-FC7A-46E6-A8E8-B71E46FAF54E}"
|
|
||||||
EndProject
|
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CTZLauncher", "CTZLauncher\CTZLauncher.csproj", "{EC25362D-5BA7-4CB3-BDA2-C575B9318086}"
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CTZLauncher", "CTZLauncher\CTZLauncher.csproj", "{EC25362D-5BA7-4CB3-BDA2-C575B9318086}"
|
||||||
EndProject
|
EndProject
|
||||||
Global
|
Global
|
||||||
@@ -13,10 +11,6 @@ Global
|
|||||||
Release|Any CPU = Release|Any CPU
|
Release|Any CPU = Release|Any CPU
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||||
{52E292BB-FC7A-46E6-A8E8-B71E46FAF54E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
|
||||||
{52E292BB-FC7A-46E6-A8E8-B71E46FAF54E}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
|
||||||
{52E292BB-FC7A-46E6-A8E8-B71E46FAF54E}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
|
||||||
{52E292BB-FC7A-46E6-A8E8-B71E46FAF54E}.Release|Any CPU.Build.0 = Release|Any CPU
|
|
||||||
{EC25362D-5BA7-4CB3-BDA2-C575B9318086}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
{EC25362D-5BA7-4CB3-BDA2-C575B9318086}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
{EC25362D-5BA7-4CB3-BDA2-C575B9318086}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
{EC25362D-5BA7-4CB3-BDA2-C575B9318086}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
{EC25362D-5BA7-4CB3-BDA2-C575B9318086}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
{EC25362D-5BA7-4CB3-BDA2-C575B9318086}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
|||||||
@@ -41,6 +41,7 @@
|
|||||||
<StartupObject />
|
<StartupObject />
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
<Reference Include="Microsoft.VisualBasic" />
|
||||||
<Reference Include="System" />
|
<Reference Include="System" />
|
||||||
<Reference Include="System.Data" />
|
<Reference Include="System.Data" />
|
||||||
<Reference Include="System.Xaml" />
|
<Reference Include="System.Xaml" />
|
||||||
@@ -57,6 +58,9 @@
|
|||||||
<Generator>MSBuild:Compile</Generator>
|
<Generator>MSBuild:Compile</Generator>
|
||||||
<SubType>Designer</SubType>
|
<SubType>Designer</SubType>
|
||||||
</ApplicationDefinition>
|
</ApplicationDefinition>
|
||||||
|
<Compile Include="Tools\SystemTools.cs" />
|
||||||
|
<Compile Include="Tools\UsefulTools.cs" />
|
||||||
|
<Compile Include="Tools\ZipTools.cs" />
|
||||||
<Page Include="MainWindow.xaml">
|
<Page Include="MainWindow.xaml">
|
||||||
<Generator>MSBuild:Compile</Generator>
|
<Generator>MSBuild:Compile</Generator>
|
||||||
<SubType>Designer</SubType>
|
<SubType>Designer</SubType>
|
||||||
@@ -65,15 +69,40 @@
|
|||||||
<DependentUpon>App.xaml</DependentUpon>
|
<DependentUpon>App.xaml</DependentUpon>
|
||||||
<SubType>Code</SubType>
|
<SubType>Code</SubType>
|
||||||
</Compile>
|
</Compile>
|
||||||
|
<Compile Include="Authentication\AuthenticationInfo.cs" />
|
||||||
|
<Compile Include="Authentication\IAuthenticator.cs" />
|
||||||
|
<Compile Include="Authentication\OfflineAuthenticator.cs" />
|
||||||
|
<Compile Include="Authentication\WarpedAuhenticator.cs" />
|
||||||
|
<Compile Include="Authentication\Yggdrasil.cs" />
|
||||||
<Compile Include="CTZAuth\CTZAuth.cs" />
|
<Compile Include="CTZAuth\CTZAuth.cs" />
|
||||||
<Compile Include="CTZAuth\ICTZAuth.cs" />
|
<Compile Include="CTZAuth\ICTZAuth.cs" />
|
||||||
<Compile Include="HttpHelper.cs" />
|
<Compile Include="HttpHelper.cs" />
|
||||||
|
<Compile Include="Launcher\LaunchArguments.cs" />
|
||||||
|
<Compile Include="Launcher\LauncherCore.cs" />
|
||||||
|
<Compile Include="Launcher\LauncherCoreInternal.cs" />
|
||||||
|
<Compile Include="Launcher\LaunchHandle.cs" />
|
||||||
|
<Compile Include="Launcher\LaunchHandleExtensions.cs" />
|
||||||
|
<Compile Include="Launcher\LaunchMode.cs" />
|
||||||
|
<Compile Include="Launcher\Version.cs" />
|
||||||
|
<Compile Include="LitJson\IJsonWrapper.cs" />
|
||||||
|
<Compile Include="LitJson\JsonData.cs" />
|
||||||
|
<Compile Include="LitJson\JsonException.cs" />
|
||||||
|
<Compile Include="LitJson\JsonMapper.cs" />
|
||||||
|
<Compile Include="LitJson\JsonMockWrapper.cs" />
|
||||||
|
<Compile Include="LitJson\JsonPropertyName.cs" />
|
||||||
|
<Compile Include="LitJson\JsonReader.cs" />
|
||||||
|
<Compile Include="LitJson\JsonWriter.cs" />
|
||||||
|
<Compile Include="LitJson\Lexer.cs" />
|
||||||
|
<Compile Include="LitJson\ParserToken.cs" />
|
||||||
<Compile Include="MainWindow.xaml.cs">
|
<Compile Include="MainWindow.xaml.cs">
|
||||||
<DependentUpon>MainWindow.xaml</DependentUpon>
|
<DependentUpon>MainWindow.xaml</DependentUpon>
|
||||||
<SubType>Code</SubType>
|
<SubType>Code</SubType>
|
||||||
</Compile>
|
</Compile>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
<Compile Include="Modules\JVersion\JVersion.cs" />
|
||||||
|
<Compile Include="Modules\JVersion\JVersionLocator.cs" />
|
||||||
|
<Compile Include="Modules\Yggdrasil\YggdrasilClient.cs" />
|
||||||
<Compile Include="Properties\AssemblyInfo.cs">
|
<Compile Include="Properties\AssemblyInfo.cs">
|
||||||
<SubType>Code</SubType>
|
<SubType>Code</SubType>
|
||||||
</Compile>
|
</Compile>
|
||||||
@@ -101,12 +130,6 @@
|
|||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Resource Include="ico.ico" />
|
<Resource Include="ico.ico" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
|
||||||
<ProjectReference Include="..\KMCCC.Shared\KMCCC.csproj">
|
|
||||||
<Project>{52e292bb-fc7a-46e6-a8e8-b71e46faf54e}</Project>
|
|
||||||
<Name>KMCCC</Name>
|
|
||||||
</ProjectReference>
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Resource Include="IZ.ico" />
|
<Resource Include="IZ.ico" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|||||||
Reference in New Issue
Block a user