Skip to content

Commit 97ddf70

Browse files
committed
Merge branch 'main' into user/drustheaxe/devcheck-checkdependencies-exitcode
2 parents 27029d1 + 1db04b6 commit 97ddf70

File tree

5 files changed

+18
-2
lines changed

5 files changed

+18
-2
lines changed

.github/ISSUE_TEMPLATE/bug-report.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ body:
3535
label: NuGet package version
3636
description: Specify the version of Windows App SDK (or Project Reunion) you're using.
3737
options:
38-
- "Windows App SDK 1.6.1: 1.6.240923002"
38+
- "Windows App SDK 1.6.2: 1.6.241106002"
3939
- "Windows App SDK 1.6 Preview 2: 1.6.240821007-preview2"
4040
- "Windows App SDK 1.6 Experimental 2: 1.6.240701003-experimental2"
4141
- type: dropdown

dev/MRTCore/mrt/Core/src/MRM.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1023,7 +1023,7 @@ STDAPI MrmGetFilePathFromName(_In_opt_ PCWSTR filename, _Outptr_ PWSTR* filePath
10231023
std::unique_ptr<wchar_t, decltype(&MrmFreeResource)> outputPath(rawOutputPath, MrmFreeResource);
10241024
RETURN_IF_FAILED(PathCchCombineEx(
10251025
outputPath.get(),
1026-
size,
1026+
length,
10271027
path.get(),
10281028
filenameToUse,
10291029
PATHCCH_ALLOW_LONG_PATHS));
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
// Copyright (c) Microsoft Corporation and Contributors.
2+
// Licensed under the MIT License.
3+
4+
#include <winresrc.h>
5+
#define VERSIONINFO_FILENAME "Microsoft.Windows.ApplicationModel.Background.UniversalBGTask.dll"
6+
#include "build\VersionInfo\AssemblyInfo.ver"

dev/WindowsAppRuntime_UniversalBGTaskDLL/WindowsAppRuntime_UniversalBGTaskDLL.vcxproj

+5
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,11 @@
124124
<None Include="packages.config" />
125125
<None Include="WindowsAppRuntime_UniversalBGTaskDLL.def" />
126126
</ItemGroup>
127+
<ItemGroup>
128+
<ResourceCompile Include="WindowsAppRuntime_UniversalBGTaskDLL.rc">
129+
<AdditionalIncludeDirectories>$(RepoRoot);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
130+
</ResourceCompile>
131+
</ItemGroup>
127132
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
128133
<ImportGroup Label="ExtensionTargets">
129134
<Import Project="$(NugetPackageDirectory)\Microsoft.Windows.CppWinRT.$(MicrosoftWindowsCppWinRTVersion)\build\native\Microsoft.Windows.CppWinRT.targets" Condition="Exists('$(NugetPackageDirectory)\Microsoft.Windows.CppWinRT.$(MicrosoftWindowsCppWinRTVersion)\build\native\Microsoft.Windows.CppWinRT.targets')" />

dev/WindowsAppRuntime_UniversalBGTaskDLL/WindowsAppRuntime_UniversalBGTaskDLL.vcxproj.filters

+5
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,9 @@
2727
<ItemGroup>
2828
<Natvis Include="$(MSBuildThisFileDirectory)..\..\natvis\wil.natvis" />
2929
</ItemGroup>
30+
<ItemGroup>
31+
<ResourceCompile Include="WindowsAppRunTime_UniversalBGTask.rc">
32+
<Filter>Resources</Filter>
33+
</ResourceCompile>
34+
</ItemGroup>
3035
</Project>

0 commit comments

Comments
 (0)