更新生成目录和引用

This commit is contained in:
Mili 2023-03-31 20:47:54 +08:00
parent 6665adacf2
commit 86cd39e0c8
4 changed files with 29 additions and 4 deletions

View File

@ -3,7 +3,9 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.4.33103.184
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FunGame.Desktop", "FunGame.Desktop/FunGame.Desktop.csproj", "{22D5BDE1-69FE-460D-84C8-11B396A70635}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FunGame.Desktop", "FunGame.Desktop\FunGame.Desktop.csproj", "{22D5BDE1-69FE-460D-84C8-11B396A70635}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FunGame.Implement", "FunGame.Implement\FunGame.Implement.csproj", "{0E1E1C6C-8DB1-40C7-8503-505C4D99BA12}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@ -15,6 +17,10 @@ Global
{22D5BDE1-69FE-460D-84C8-11B396A70635}.Debug|Any CPU.Build.0 = Debug|Any CPU
{22D5BDE1-69FE-460D-84C8-11B396A70635}.Release|Any CPU.ActiveCfg = Release|Any CPU
{22D5BDE1-69FE-460D-84C8-11B396A70635}.Release|Any CPU.Build.0 = Release|Any CPU
{0E1E1C6C-8DB1-40C7-8503-505C4D99BA12}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{0E1E1C6C-8DB1-40C7-8503-505C4D99BA12}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0E1E1C6C-8DB1-40C7-8503-505C4D99BA12}.Release|Any CPU.ActiveCfg = Release|Any CPU
{0E1E1C6C-8DB1-40C7-8503-505C4D99BA12}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE

View File

@ -1,5 +1,6 @@
using Milimoe.FunGame.Core.Library.Common.Event;
using Milimoe.FunGame.Core.Library.Constant;
using Milimoe.FunGame.Core.Library.Exception;
using Milimoe.FunGame.Desktop.Library;
using Milimoe.FunGame.Desktop.Model;
using Milimoe.FunGame.Desktop.UI;
@ -112,7 +113,7 @@ namespace Milimoe.FunGame.Desktop.Controller
}
catch (Exception e)
{
RunTime.WriteGameInfo(e.GetErrorInfo());
Main.GetMessage(e.GetErrorInfo());
}
}
}

View File

@ -10,7 +10,7 @@
<Copyright></Copyright>
<PackageIcon>logo.ico</PackageIcon>
<Company>Milimoe</Company>
<BaseOutputPath>..\bin</BaseOutputPath>
<BaseOutputPath>..\bin\</BaseOutputPath>
<GenerateDocumentationFile>False</GenerateDocumentationFile>
<SignAssembly>False</SignAssembly>
<Authors>Milimoe</Authors>
@ -34,6 +34,17 @@
<Content Include="Images\logo.ico" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\FunGame.Implement\FunGame.Implement.csproj" />
</ItemGroup>
<ItemGroup>
<Reference Include="FunGame.Core">
<HintPath>..\..\FunGame.Core\bin\Debug\net7.0\FunGame.Core.dll</HintPath>
<Private>True</Private>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Update="Library\Component\MinButton.cs">
<SubType>Component</SubType>

View File

@ -5,7 +5,7 @@
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Company>Milimoe</Company>
<BaseOutputPath>..\bin</BaseOutputPath>
<BaseOutputPath>..\bin\</BaseOutputPath>
<Authors>Milimoe</Authors>
<Title>Implement</Title>
<PackageOutputPath>..\bin</PackageOutputPath>
@ -23,4 +23,11 @@
<DebugType>embedded</DebugType>
</PropertyGroup>
<ItemGroup>
<Reference Include="FunGame.Core">
<HintPath>..\..\FunGame.Core\bin\Debug\net7.0\FunGame.Core.dll</HintPath>
<Private>True</Private>
</Reference>
</ItemGroup>
</Project>