This commit is contained in:
Arlo Godfrey 2023-05-09 18:29:48 -05:00 коммит произвёл Arlo
Родитель 3fd399300f
Коммит 8435db8e9a
1 изменённых файлов: 5 добавлений и 5 удалений

10
.github/workflows/build.yml поставляемый
Просмотреть файл

@ -17,7 +17,7 @@ on:
env:
DOTNET_VERSION: ${{ '6.0.x' }}
ENABLE_DIAGNOSTICS: true
ENABLE_DIAGNOSTICS: false
#COREHOST_TRACE: 1
COREHOST_TRACEFILE: corehosttrace.log
@ -122,12 +122,12 @@ jobs:
if: ${{ matrix.platform == 'WinUI3' }}
- name: MSBuild (With diagnostics)
if: ${{ (env.ENABLE_DIAGNOSTICS == 'true') }}
run: msbuild.exe CommunityToolkit.AllComponents.sln /restore /bl /nowarn:MSB4011 -p:Configuration=Release -v:diag
if: ${{ env.ENABLE_DIAGNOSTICS == 'true' }}
run: msbuild.exe CommunityToolkit.AllComponents.sln /restore /nowarn:MSB4011 -p:Configuration=Release /bl -v:diag
- name: MSBuild
# UseDotNetNativeToolchain is disabled until ILT0005 can be resolved. Build Release mode locally to compile with .NET Native.
run: msbuild.exe CommunityToolkit.AllComponents.sln /restore /nowarn:MSB4011 -p:Configuration=Release /bl -v:diag
if: ${{ env.ENABLE_DIAGNOSTICS == 'false' }}
run: msbuild.exe CommunityToolkit.AllComponents.sln /restore /nowarn:MSB4011 -p:Configuration=Release
# Build All Packages
- name: pack experiments