Mark Schofield
Mark Schofield
I have an MSBuild Target that updates Items' metadata using an ItemGroup with the 'Update' attribute: ```xml Tiny Large ``` Building this with MSBuild yields the output: `Things: One -...
I'm attempting to follow [Scenario 4: Distribute a UPM Package w/ NuGet Dependency](https://github.com/microsoft/MSBuildForUnity/blob/master/Documentation/CoreScenarios.md#scenario-4-distribute-a-upm-package-w-nuget-dependency). Based on my understanding of the documentation, I have: 1. Added a '.csproj' file to my UPM...
**Describe your environment.** Android Version 9. Android NDK 21.3. cpp_client_telemetry built with USE_ROOM=0 and USE_CURL=1. cpp_client_telemetry built at tag "3.5.25". **Steps to reproduce.** Call "LogManager::Initialize" with a tenant token. **What...
"Samples\Content\cpp-win32\Squares\Squares.vcxproj" doesn't configure precompiled headers correctly, meaning that: 1. 'pch.cpp' is compiled unnecessarily 1. Other '.cpp' files don't benefit from precompiled headers. Only the `Debug|Win32` configuration actually specifies any precompiled...
Fixes #23366 The current MSBuild integration doesn't bootstrap VCPkg when running in 'manifest' mode - meaning that consumers have to manually run, say, `bootstrap-vcpkg.bat` before building, or the build fails...
# Bug Report ### Is the issue related to model conversion? This is not related to model conversion. ### Describe the bug When building ONNX with CMake, and building the...
Fixes #5395. `build/NuSpecs/WindowsAppSDK-Nuget-Native.AutoInitializer.targets` attempts to add a `ClCompile` Item during the `WindowsAppRuntimeAutoInitializer` Target. In doing so it attempts to use the existing metadata by uttering `%(PreprocessorDefinitions)`. This syntax is fine...
`build.cmd` restores and builds with a specific packages directory: ```cmd call .nuget\nuget.exe restore "%%D" -configfile Samples\nuget.config -PackagesDirectory %~dp0packages call msbuild /warnaserror /p:platform=%platform% /p:configuration=%configuration% /p:NugetPackageDirectory=%~dp0packages /bl:"%%~nD.binlog" "%%D" ``` which resolves to...
There are samples that depend on "Microsoft.Windows.SDK.BuildTools" version "10.0.26100.2161" but I cannot find that version on either of the NuGet source used in this repo: * https://pkgs.dev.azure.com/shine-oss/WinAppSDK-Samples/_packaging/WinAppSDK-SampleDeps/nuget/v3/index.json * https://api.nuget.org/v3/index.json Moving...
As per the [.NET SDK uses a smaller RID graph documentation](https://learn.microsoft.com/en-us/dotnet/core/compatibility/sdk/8.0/rid-graph) the "RID graph" has been pruned. Only 'portable' RIDs should be used (e.g. `win-`, `linux-`), and version-specific RIDs should...