|
1 | | -<Project Sdk="Microsoft.NET.Sdk"> |
2 | | - |
3 | | - <PropertyGroup> |
4 | | - <OutputType>Exe</OutputType> |
5 | | - <TargetFramework>net8.0</TargetFramework> |
6 | | - <ImplicitUsings>enable</ImplicitUsings> |
7 | | - <LangVersion>10</LangVersion> |
8 | | - <DockerDefaultTargetOS>Linux</DockerDefaultTargetOS> |
9 | | - </PropertyGroup> |
10 | | - |
11 | | - <PropertyGroup> |
12 | | - <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath> |
13 | | - <ApplicationIcon /> |
14 | | - <StartupObject /> |
15 | | - </PropertyGroup> |
16 | | - |
17 | | - <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> |
18 | | - <OutputPath>..\bin\app_debug</OutputPath> |
19 | | - </PropertyGroup> |
20 | | - |
21 | | - <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"> |
22 | | - <OutputPath>..\bin\app</OutputPath> |
23 | | - </PropertyGroup> |
24 | | - |
25 | | - <ItemGroup> |
26 | | - <None Update="Configs\app_log.config"> |
27 | | - <CopyToOutputDirectory>Always</CopyToOutputDirectory> |
28 | | - </None> |
29 | | - <None Update="Configs\app_config.json"> |
30 | | - <CopyToOutputDirectory>Always</CopyToOutputDirectory> |
31 | | - </None> |
32 | | - <None Update="*.bat"> |
33 | | - <CopyToOutputDirectory>Always</CopyToOutputDirectory> |
34 | | - </None> |
35 | | - </ItemGroup> |
36 | | - |
37 | | - <ItemGroup> |
38 | | - <ProjectReference Include="..\GameFrameX.Apps\GameFrameX.Apps.csproj" /> |
39 | | - <ProjectReference Include="..\GameFrameX.Config\GameFrameX.Config.csproj" /> |
40 | | - <ProjectReference Include="..\GameFrameX.Core\GameFrameX.Core.csproj" /> |
41 | | - <ProjectReference Include="..\GameFrameX.DataBase\GameFrameX.DataBase.csproj" /> |
42 | | - <ProjectReference Include="..\GameFrameX.GameAnalytics\GameFrameX.GameAnalytics.csproj" /> |
43 | | - <ProjectReference Include="..\GameFrameX.Monitor\GameFrameX.Monitor.csproj" /> |
44 | | - <ProjectReference Include="..\GameFrameX.NetWork.Message\GameFrameX.NetWork.Message.csproj" /> |
45 | | - <ProjectReference Include="..\GameFrameX.Proto.BuiltIn\GameFrameX.Proto.BuiltIn.csproj" /> |
46 | | - <ProjectReference Include="..\GameFrameX.Proto\GameFrameX.Proto.csproj" /> |
47 | | - <ProjectReference Include="..\GameFrameX.StartUp\GameFrameX.StartUp.csproj" /> |
48 | | - <ProjectReference Include="..\GameFrameX.Utility\GameFrameX.Utility.csproj" /> |
49 | | - </ItemGroup> |
50 | | - |
51 | | - <ItemGroup> |
52 | | - <PackageReference Include="GameFrameX.SuperSocket.ClientEngine" Version="1.0.3" /> |
53 | | - </ItemGroup> |
54 | | -</Project> |
| 1 | +<Project Sdk="Microsoft.NET.Sdk"> |
| 2 | + |
| 3 | + <PropertyGroup> |
| 4 | + <OutputType>Exe</OutputType> |
| 5 | + <TargetFramework>net8.0</TargetFramework> |
| 6 | + <ImplicitUsings>enable</ImplicitUsings> |
| 7 | + <LangVersion>10</LangVersion> |
| 8 | + <DockerDefaultTargetOS>Linux</DockerDefaultTargetOS> |
| 9 | + </PropertyGroup> |
| 10 | + |
| 11 | + <PropertyGroup> |
| 12 | + <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath> |
| 13 | + <ApplicationIcon /> |
| 14 | + <StartupObject /> |
| 15 | + </PropertyGroup> |
| 16 | + |
| 17 | + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> |
| 18 | + <OutputPath>..\bin\app_debug</OutputPath> |
| 19 | + </PropertyGroup> |
| 20 | + |
| 21 | + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"> |
| 22 | + <OutputPath>..\bin\app</OutputPath> |
| 23 | + </PropertyGroup> |
| 24 | + |
| 25 | + <ItemGroup> |
| 26 | + <None Update="Configs\app_log.config"> |
| 27 | + <CopyToOutputDirectory>Always</CopyToOutputDirectory> |
| 28 | + </None> |
| 29 | + <None Update="Configs\app_config.json"> |
| 30 | + <CopyToOutputDirectory>Always</CopyToOutputDirectory> |
| 31 | + </None> |
| 32 | + <None Update="*.bat"> |
| 33 | + <CopyToOutputDirectory>Always</CopyToOutputDirectory> |
| 34 | + </None> |
| 35 | + </ItemGroup> |
| 36 | + |
| 37 | + <ItemGroup> |
| 38 | + <ProjectReference Include="..\GameFrameX.Apps\GameFrameX.Apps.csproj" /> |
| 39 | + <ProjectReference Include="..\GameFrameX.Config\GameFrameX.Config.csproj" /> |
| 40 | + <ProjectReference Include="..\GameFrameX.Core\GameFrameX.Core.csproj" /> |
| 41 | + <ProjectReference Include="..\GameFrameX.DataBase\GameFrameX.DataBase.csproj" /> |
| 42 | + <ProjectReference Include="..\GameFrameX.GameAnalytics\GameFrameX.GameAnalytics.csproj" /> |
| 43 | + <ProjectReference Include="..\GameFrameX.Monitor\GameFrameX.Monitor.csproj" /> |
| 44 | + <ProjectReference Include="..\GameFrameX.NetWork.Message\GameFrameX.NetWork.Message.csproj" /> |
| 45 | + <ProjectReference Include="..\GameFrameX.Proto.BuiltIn\GameFrameX.Proto.BuiltIn.csproj" /> |
| 46 | + <ProjectReference Include="..\GameFrameX.Proto\GameFrameX.Proto.csproj" /> |
| 47 | + <ProjectReference Include="..\GameFrameX.StartUp\GameFrameX.StartUp.csproj" /> |
| 48 | + <ProjectReference Include="..\GameFrameX.Utility\GameFrameX.Utility.csproj" /> |
| 49 | + </ItemGroup> |
| 50 | + |
| 51 | + <ItemGroup> |
| 52 | + <PackageReference Include="GameFrameX.SuperSocket.ClientEngine" Version="1.1.0" /> |
| 53 | + </ItemGroup> |
| 54 | +</Project> |
0 commit comments