Skip to content

Commit

Permalink
调度到官方服务器且干掉使用私有的库
Browse files Browse the repository at this point in the history
  • Loading branch information
lindexi committed Dec 6, 2023
1 parent e1d2cfe commit d7b7aa2
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 16 deletions.
29 changes: 15 additions & 14 deletions .github/workflows/Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ on: [push]
jobs:
BuildDebug:

runs-on: [self-hosted, VSPreview]
# runs-on: [self-hosted, VSPreview]
runs-on: windows-latest

steps:
- uses: actions/checkout@v1
Expand All @@ -23,18 +24,18 @@ jobs:
name: WPF_Debug
path: ./artifacts/packages/Debug/NonShipping

BuildRelease:
# BuildRelease:

runs-on: [self-hosted, VSPreview]
# runs-on: [self-hosted, VSPreview]

steps:
- uses: actions/checkout@v1
- name: Build
run: .\build.cmd -pack -ci -configuration Release -prepareMachine /p:Platform=x86
- name: Build CustomWPF
run: dotnet build CustomWpf -c Release
- name: Push
uses: actions/upload-artifact@v1
with:
name: WPF_Release
path: ./artifacts/packages/Release/NonShipping
# steps:
# - uses: actions/checkout@v1
# - name: Build
# run: .\build.cmd -pack -ci -configuration Release -prepareMachine /p:Platform=x86
# - name: Build CustomWPF
# run: dotnet build CustomWpf -c Release
# - name: Push
# uses: actions/upload-artifact@v1
# with:
# name: WPF_Release
# path: ./artifacts/packages/Release/NonShipping
4 changes: 2 additions & 2 deletions eng/WpfArcadeSdk/tools/Wpf.Cpp.props
Original file line number Diff line number Diff line change
Expand Up @@ -107,10 +107,10 @@
<ManagedCxxSuppressions>$(ManagedCxxSuppressions);4995</ManagedCxxSuppressions>
</PropertyGroup>

<PropertyGroup>
<!-- <PropertyGroup>
<UsePrivateCppTools Condition="'$(UsePrivateCppTools)' == ''">false</UsePrivateCppTools>
</PropertyGroup>
<Import Project="Wpf.Cpp.PrivateTools.props" Condition="Exists('Wpf.Cpp.PrivateTools.props') And '$(UsePrivateCppTools)'=='true'"/>
<Import Project="Wpf.Cpp.PrivateTools.props" Condition="Exists('Wpf.Cpp.PrivateTools.props') And '$(UsePrivateCppTools)'=='true'"/> -->

<!-- Set up standard libraries for Native C++ projects -->
<PropertyGroup>
Expand Down

0 comments on commit d7b7aa2

Please sign in to comment.