Here is the list of issues that had Flutter's e: uwp
label on October 10th, 2022. This label was used for the old Windows UWP embedder, which was removed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Project Sdk="Microsoft.NET.Sdk"> | |
<PropertyGroup> | |
<OutputType>Exe</OutputType> | |
<TargetFramework>net5.0</TargetFramework> | |
</PropertyGroup> | |
<ItemGroup> | |
<PackageReference Include="Microsoft.Extensions.Hosting" Version="5.0.0" /> | |
</ItemGroup> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class MyApp { | |
private IPackageDownloadClient _nuget; | |
public MyApp(IPackageDownloadClient nuget) { | |
_nuget = nuget; | |
} | |
public RunAsync() { | |
// This is the code I want to write. | |
// The NuGet package download client is injected into my application. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Project Sdk="Microsoft.NET.Sdk"> | |
<PropertyGroup> | |
<OutputType>Exe</OutputType> | |
<TargetFramework>net5.0</TargetFramework> | |
</PropertyGroup> | |
<ItemGroup> | |
<PackageReference Include="Azure.Storage.Blobs" Version="12.9.0" /> | |
<PackageReference Include="NuGet.Packaging" Version="5.9.1" /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$destination = "<BaGet package source>" | |
# Uncomment this line if you've configured BaGet to require an API key | |
# & nuget.exe setapikey "MY-API-KEY" -Source $destination | |
$packages = Get-ChildItem -Path .\ -Filter *.nupkg -Recurse -File | |
$packages |% { | |
& nuget.exe push -Source $destination $_.FullName | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Microsoft.Azure.Functions.Worker; | |
using Microsoft.Azure.Functions.Worker.Http; | |
using Microsoft.Extensions.Logging; | |
using System.Net; | |
namespace AzFuncLogging | |
{ | |
public class Function1 | |
{ | |
private readonly ILogger<Function1> _logger; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Copyright 2014 The Flutter Authors. All rights reserved. | |
// Use of this source code is governed by a BSD-style license that can be | |
// found in the LICENSE file. | |
// This example shows how to use the ui.Canvas interface to draw various shapes | |
// with gradients and transforms. | |
//import 'dart:io'; | |
import 'dart:typed_data'; | |
import 'dart:ui' as ui; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/samples/gles1/HelloTriangle.cpp b/samples/gles1/HelloTriangle.cpp | |
index 0220b9678..2896ec547 100644 | |
--- a/samples/gles1/HelloTriangle.cpp | |
+++ b/samples/gles1/HelloTriangle.cpp | |
@@ -13,6 +13,8 @@ | |
// URLs: http://safari.informit.com/9780321563835 | |
// http://www.opengles-book.com | |
+#include <objbase.h> | |
+ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/src/libANGLE/renderer/d3d/d3d11/converged/CompositorNativeWindow11.cpp b/src/libANGLE/renderer/d3d/d3d11/converged/CompositorNativeWindow11.cpp | |
index a2b190f38..bac68d5d0 100644 | |
--- a/src/libANGLE/renderer/d3d/d3d11/converged/CompositorNativeWindow11.cpp | |
+++ b/src/libANGLE/renderer/d3d/d3d11/converged/CompositorNativeWindow11.cpp | |
@@ -305,8 +305,13 @@ RoHelper::RoHelper() | |
auto result = RoInitialize(RO_INIT_MULTITHREADED); | |
- if (SUCCEEDED(result) || result == S_FALSE || result == RPC_E_CHANGED_MODE) | |
+ if (SUCCEEDED(result) || result == RPC_E_CHANGED_MODE) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
repository(owner: "nuget", name: "home") { | |
issues( | |
first: 20 | |
filterBy: {states: [OPEN]} | |
orderBy: {field: CREATED_AT, direction: DESC} | |
) { | |
pageInfo { | |
endCursor | |
} |