Skip to content
This repository has been archived by the owner on Feb 12, 2023. It is now read-only.

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
twoone3 committed Aug 7, 2021
1 parent 61f8477 commit db8d0fa
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 9 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/msbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,4 @@ jobs:
uses: softprops/[email protected]
with:
files: |
./out/BDSpyrunner.dll
./out/BDSpyrunner.pdb
../test/bdxcore_mod/
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
.vs
BDSpyrunner/Release
out
BDSpyrunner/Release
11 changes: 7 additions & 4 deletions BDSpyrunner/BDSpyrunner.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
<ClInclude Include="pch.h" />
</ItemGroup>
<ItemGroup>
<None Include="..\.github\workflows\msbuild.yml" />
<None Include="..\README.md" />
<None Include="cpp.hint" />
</ItemGroup>
Expand Down Expand Up @@ -96,15 +97,15 @@
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<LinkIncremental>true</LinkIncremental>
<OutDir>../out/</OutDir>
<OutDir>..\..\test\bdxcore_mod\</OutDir>
<IntDir>$(Configuration)\</IntDir>
<PublicIncludeDirectories>
</PublicIncludeDirectories>
<IncludePath>$(IncludePath)</IncludePath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<LinkIncremental>false</LinkIncremental>
<OutDir>../out/</OutDir>
<OutDir>..\..\test\bdxcore_mod\</OutDir>
<IntDir>$(Configuration)\</IntDir>
<PublicIncludeDirectories>
</PublicIncludeDirectories>
Expand Down Expand Up @@ -163,7 +164,8 @@
<EnableUAC>false</EnableUAC>
</Link>
<PostBuildEvent>
<Command>copy $(SolutionDir)out\ $(SolutionDir)..\test\bdxcore_mod\ /B /Y</Command>
<Command>
</Command>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
Expand All @@ -189,7 +191,8 @@
<EnableUAC>false</EnableUAC>
</Link>
<PostBuildEvent>
<Command>copy $(SolutionDir)out\ $(SolutionDir)..\test\bdxcore_mod\ /B /Y</Command>
<Command>
</Command>
</PostBuildEvent>
</ItemDefinitionGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
Expand Down
1 change: 1 addition & 0 deletions BDSpyrunner/BDSpyrunner.vcxproj.filters
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,6 @@
<ItemGroup>
<None Include="cpp.hint" />
<None Include="..\README.md" />
<None Include="..\.github\workflows\msbuild.yml" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion BDSpyrunner/BDSpyrunner.vcxproj.user
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<ShowAllFiles>true</ShowAllFiles>
<ShowAllFiles>false</ShowAllFiles>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<LocalDebuggerCommand>C:\Users\Administrator\Desktop\test\bedrock_server.exe</LocalDebuggerCommand>
Expand Down

0 comments on commit db8d0fa

Please sign in to comment.