Skip to content

Commit 489b3c6

Browse files
committed
feat: 添加 x64 生成
1 parent 702588a commit 489b3c6

2 files changed

Lines changed: 35 additions & 10 deletions

File tree

LabAPI_InfiniteAmmo.csproj

Lines changed: 28 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,24 +13,43 @@
1313
<FileAlignment>512</FileAlignment>
1414
<Deterministic>true</Deterministic>
1515
</PropertyGroup>
16-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
16+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
1717
<DebugSymbols>true</DebugSymbols>
18-
<DebugType>full</DebugType>
19-
<Optimize>false</Optimize>
20-
<OutputPath>bin\Debug\</OutputPath>
18+
<OutputPath>bin\x64\Debug\</OutputPath>
2119
<DefineConstants>DEBUG;TRACE</DefineConstants>
20+
<DebugType>full</DebugType>
21+
<PlatformTarget>x64</PlatformTarget>
22+
<LangVersion>12</LangVersion>
23+
<WarningLevel>4</WarningLevel>
2224
<ErrorReport>prompt</ErrorReport>
25+
</PropertyGroup>
26+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
27+
<OutputPath>bin\x64\Release\</OutputPath>
28+
<DefineConstants>TRACE</DefineConstants>
29+
<Optimize>true</Optimize>
30+
<DebugType>pdbonly</DebugType>
31+
<PlatformTarget>x64</PlatformTarget>
32+
<LangVersion>12</LangVersion>
2333
<WarningLevel>4</WarningLevel>
34+
<ErrorReport>prompt</ErrorReport>
35+
</PropertyGroup>
36+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
37+
<DebugSymbols>true</DebugSymbols>
38+
<OutputPath>bin\Debug\</OutputPath>
39+
<DefineConstants>DEBUG;TRACE</DefineConstants>
40+
<DebugType>full</DebugType>
41+
<PlatformTarget>AnyCPU</PlatformTarget>
2442
<LangVersion>12</LangVersion>
43+
<ErrorReport>prompt</ErrorReport>
2544
</PropertyGroup>
26-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
27-
<DebugType>pdbonly</DebugType>
28-
<Optimize>true</Optimize>
45+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
2946
<OutputPath>bin\Release\</OutputPath>
3047
<DefineConstants>TRACE</DefineConstants>
31-
<ErrorReport>prompt</ErrorReport>
32-
<WarningLevel>4</WarningLevel>
48+
<Optimize>true</Optimize>
49+
<DebugType>pdbonly</DebugType>
50+
<PlatformTarget>AnyCPU</PlatformTarget>
3351
<LangVersion>12</LangVersion>
52+
<ErrorReport>prompt</ErrorReport>
3453
</PropertyGroup>
3554
<ItemGroup>
3655
<Reference Include="Assembly-CSharp">

LabAPI_InfiniteAmmo.slnx

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
11
<Solution>
2-
<Project Path="LabAPI_InfiniteAmmo.csproj" Id="c816c531-3266-4fd4-99f3-d8da42f5ea02" />
2+
<Configurations>
3+
<Platform Name="Any CPU" />
4+
<Platform Name="x64" />
5+
</Configurations>
6+
<Project Path="LabAPI_InfiniteAmmo.csproj" Id="c816c531-3266-4fd4-99f3-d8da42f5ea02">
7+
<Platform Solution="*|x64" Project="x64" />
8+
</Project>
39
</Solution>

0 commit comments

Comments
 (0)