Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 1 addition & 6 deletions src/ConsumeUwp/ConsumeUwp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,9 @@
<PropertyGroup>
<NoWarn>$(NoWarn);PolyfillTargetsForNuget</NoWarn>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<TargetFramework>uap10.0.16299</TargetFramework>
<TargetFramework>uap10.0.26100</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.Memory" />
<PackageReference Include="System.ValueTuple" />
<PackageReference Include="System.Runtime.InteropServices.RuntimeInformation" />
<PackageReference Include="System.Net.Http" />
<PackageReference Include="System.Threading.Tasks.Extensions" />
<Compile Include="..\Consume\*.cs" />
</ItemGroup>
<Import Project="$(SolutionDir)\Polyfill\Polyfill.targets" />
Expand Down
2 changes: 1 addition & 1 deletion src/Polyfill/Polyfill_Process.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ namespace Polyfills;

static partial class Polyfill
{
#if NETFRAMEWORK || NETSTANDARD || NETCOREAPP2X
#if NETFRAMEWORK || NETSTANDARD || NETCOREAPP2X || WINDOWS_UWP

/// <summary>
/// Immediately stops the associated process, and optionally its child/descendent processes.
Expand Down
2 changes: 1 addition & 1 deletion src/Polyfill/ReadOnlySpanAction.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#pragma warning disable

#if FeatureMemory
#if NETFRAMEWORK || NETSTANDARD2_0 || NETCOREAPP2X
#if NETFRAMEWORK || NETSTANDARD2_0 || NETCOREAPP2_0 || WINDOWS_UWP
#nullable enable

namespace System.Buffers;
Expand Down
2 changes: 1 addition & 1 deletion src/Polyfill/SpanAction.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#pragma warning disable

#if FeatureMemory
#if NETFRAMEWORK || NETSTANDARD2_0 || NETCOREAPP2X
#if NETFRAMEWORK || NETSTANDARD2_0 || NETCOREAPP2_0 || WINDOWS_UWP
#nullable enable

namespace System.Buffers;
Expand Down
42 changes: 42 additions & 0 deletions src/PolyfillUwp.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.1.32120.378
MinimumVisualStudioVersion = 16.0.29201.188
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{9A6C4741-C83D-4E05-A62F-8049F65B9B6C}"
ProjectSection(SolutionItems) = preProject
.editorconfig = .editorconfig
.gitattributes = .gitattributes
..\.gitignore = ..\.gitignore
appveyor.yml = appveyor.yml
Directory.Build.props = Directory.Build.props
Directory.Packages.props = Directory.Packages.props
global.json = global.json
mdsnippets.json = mdsnippets.json
..\readme.md = ..\readme.md
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ConsumeUwp", "ConsumeUwp\ConsumeUwp.csproj", "{1F7D9DD0-A69C-40FB-B578-655679FF3143}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{698FB675-3480-4107-8CAE-51452C6138CE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{698FB675-3480-4107-8CAE-51452C6138CE}.Debug|Any CPU.Build.0 = Debug|Any CPU
{698FB675-3480-4107-8CAE-51452C6138CE}.Release|Any CPU.ActiveCfg = Release|Any CPU
{698FB675-3480-4107-8CAE-51452C6138CE}.Release|Any CPU.Build.0 = Release|Any CPU
{1F7D9DD0-A69C-40FB-B578-655679FF3143}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{1F7D9DD0-A69C-40FB-B578-655679FF3143}.Debug|Any CPU.Build.0 = Debug|Any CPU
{1F7D9DD0-A69C-40FB-B578-655679FF3143}.Release|Any CPU.ActiveCfg = Release|Any CPU
{1F7D9DD0-A69C-40FB-B578-655679FF3143}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {B0B94980-5385-4EC6-A0EE-C9A191DDFC05}
EndGlobalSection
EndGlobal
File renamed without changes.
15 changes: 0 additions & 15 deletions src/PolyfillUwp.slnx

This file was deleted.

2 changes: 2 additions & 0 deletions src/appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ build_script:
- dotnet build src/Polyfill.slnx --configuration Release --verbosity quiet
- pwsh: ./src/run-tests.ps1
- dotnet build src/PolyfillTrimmed.slnf --target PublishAll --configuration Release
- msbuild.exe src/PolyfillUwp.sln /p:Configuration=Release -verbosity:quiet -restore
- msbuild.exe src/PolyfillUwp.sln /p:Configuration=Release -verbosity:quiet

on_failure:
- ps: Get-ChildItem *.received.* -recurse | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name }
Expand Down