Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FI develop into notification feature branch #2733

Commits on Jun 28, 2022

  1. Configuration menu
    Copy the full SHA
    097d220 View commit details
    Browse the repository at this point in the history

Commits on Jun 29, 2022

  1. Merge branch 'main' of https://github.com/microsoft/WindowsAppSDK int…

    …o develop
    reunion-maestro-bot committed Jun 29, 2022
    Configuration menu
    Copy the full SHA
    5c966bc View commit details
    Browse the repository at this point in the history

Commits on Jun 30, 2022

  1. Introduce Register Overload for assets (#2596)

    * Introduce Register Overload for assets
    
    * Address comments
    
    * Add contractversion to register APi
    
    * Address comments
    
    * Add more examples of register API usage
    sharath2727 authored Jun 30, 2022
    Configuration menu
    Copy the full SHA
    8a3f22e View commit details
    Browse the repository at this point in the history

Commits on Jul 1, 2022

  1. Configuration menu
    Copy the full SHA
    805c25c View commit details
    Browse the repository at this point in the history

Commits on Jul 5, 2022

  1. Configuration menu
    Copy the full SHA
    46551c8 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #2705 from microsoft/gabilka/1.1.2-tag

    Add 1.1.2 tag to bug report
    gabbybilka authored Jul 5, 2022
    Configuration menu
    Copy the full SHA
    0e6dbb6 View commit details
    Browse the repository at this point in the history

Commits on Jul 6, 2022

  1. Merge branch 'main' of https://github.com/microsoft/WindowsAppSDK int…

    …o develop
    reunion-maestro-bot committed Jul 6, 2022
    Configuration menu
    Copy the full SHA
    0000abd View commit details
    Browse the repository at this point in the history

Commits on Jul 12, 2022

  1. Properly ignore cleanup event if it can't be opened. (#2658)

    If we can't open the cleanup event, ignore it.
    
    Fixes ADO#38606299
    jlaanstra authored Jul 12, 2022
    Configuration menu
    Copy the full SHA
    0c2262b View commit details
    Browse the repository at this point in the history
  2. WindowsAppRuntimeInstaller.exe fails if newer version present

    Discussion #2708: [WindowsAppRuntime installation error: The package could not be installed because a higher version of this package is already installed](#2708)
    
    >Microsoft.WindowsAppRuntime.1.1_1000.516.2156.0_x64__8wekyb3d8bbwe Package deployment result : 0x80073d06 The package could not be installed because a higher version of this package is already installed. One or more install operations failed. Result: 0x80073d06
    
    That's a bug - it should be OK, not an error.
    
    If v1.1.3 is installed and you run the installer for v1.1.2 we call packageManager.AddPackageAsync(...v1.1.2...) which returns 0x80073d06 == `ERROR_INSTALL_PACKAGE_DOWNGRADE` which is technically an error but functionally it's OK. If you build with 1.1.2 we don't require the runtime packages exactly match 1.1.2, but rather that there needs to be a package equal-or-higher than 1.1.2 (i.e. `>=1.1.2` not `==1.1.2`). If 1.1.3 is installed then all is well.
    
    Problem is we should be trapping `ERROR_INSTALL_PACKAGE_DOWNGRADE` and treating it as success. That's a bug on our part. 
    
    https://task.ms/40411617
    
    FYI: servicing-consider-1.1 = https://task.ms/40411679
    DrusTheAxe authored Jul 12, 2022
    Configuration menu
    Copy the full SHA
    7095161 View commit details
    Browse the repository at this point in the history

Commits on Jul 13, 2022

  1. Merge branch 'main' of https://github.com/microsoft/WindowsAppSDK int…

    …o develop
    reunion-maestro-bot committed Jul 13, 2022
    Configuration menu
    Copy the full SHA
    9f61399 View commit details
    Browse the repository at this point in the history

Commits on Jul 14, 2022

  1. Configuration menu
    Copy the full SHA
    b2b0b53 View commit details
    Browse the repository at this point in the history

Commits on Jul 19, 2022

  1. XCOPY command should be <COPY> to ensure execution (#2734)

    * XCOPY command should be XCOPY.EXE to ensure execution
    
    * Changed xcopy.exe to <Copy>
    
    * Fix typo
    DrusTheAxe authored Jul 19, 2022
    Configuration menu
    Copy the full SHA
    99d3331 View commit details
    Browse the repository at this point in the history

Commits on Jul 20, 2022

  1. Put AccessControl files into transport package (#2751)

    * Add projection DLL
    
    * Put files into nuget package
    DefaultRyan authored Jul 20, 2022
    Configuration menu
    Copy the full SHA
    6c30ec1 View commit details
    Browse the repository at this point in the history
  2. Remove noexcept from Bootstrapper API so it can be used from C (#2750)

    * Remove noexcept from Bootstrapper API so it can be used from C
    
    * Switch noexcept to macro-style optional support per feedback
    DrusTheAxe authored Jul 20, 2022
    Configuration menu
    Copy the full SHA
    e8c0e54 View commit details
    Browse the repository at this point in the history
  3. Merge branch 'main' of https://github.com/microsoft/WindowsAppSDK int…

    …o develop
    reunion-maestro-bot committed Jul 20, 2022
    Configuration menu
    Copy the full SHA
    1cdee3a View commit details
    Browse the repository at this point in the history

Commits on Jul 21, 2022

  1. Configuration menu
    Copy the full SHA
    ea3f377 View commit details
    Browse the repository at this point in the history
  2. Merge branch 'main' of https://github.com/microsoft/WindowsAppSDK int…

    …o develop
    reunion-maestro-bot committed Jul 21, 2022
    Configuration menu
    Copy the full SHA
    59978e8 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    62f6bfd View commit details
    Browse the repository at this point in the history
  4. <Copy> vs XCOPY.EXE -- Unbreak WindowsAppSDK-Nuget-Native.C.props

    Not-Build break 'build\native\WindowsAppSDK-Nuget-Native.C.props(32,13): error MSB4066: The attribute 'SourceFiles' in element is unrecognized.' -- Foundation builds but the aggregator doesn't. I suspect it's because of the command can't go in a , maybe something more complicated with the PostBuildEvent DependsOn a to do the copy...but I can't find any clear docs or net links clearly spelling it out so rather than fiddling while Rome burns I'm switching back to the original xcopy.exe solution to un-break the pipeline.
    
    Will follow up with folks to understand why the PR's build didn't pick this up
    DrusTheAxe authored Jul 21, 2022
    Configuration menu
    Copy the full SHA
    910f84f View commit details
    Browse the repository at this point in the history

Commits on Jul 22, 2022

  1. Configuration menu
    Copy the full SHA
    f158e75 View commit details
    Browse the repository at this point in the history
  2. Merge branch 'main' of https://github.com/microsoft/WindowsAppSDK int…

    …o develop
    reunion-maestro-bot committed Jul 22, 2022
    Configuration menu
    Copy the full SHA
    1cd16b9 View commit details
    Browse the repository at this point in the history

Commits on Jul 25, 2022

  1. Configuration menu
    Copy the full SHA
    ca8ebee View commit details
    Browse the repository at this point in the history