Skip to content

Commit 80091ac

Browse files
authored
Polyfill uwp.slnx (#435)
1 parent e1ed3c8 commit 80091ac

File tree

8 files changed

+48
-24
lines changed

8 files changed

+48
-24
lines changed

src/ConsumeUwp/ConsumeUwp.csproj

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,9 @@
22
<PropertyGroup>
33
<NoWarn>$(NoWarn);PolyfillTargetsForNuget</NoWarn>
44
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
5-
<TargetFramework>uap10.0.16299</TargetFramework>
5+
<TargetFramework>uap10.0.26100</TargetFramework>
66
</PropertyGroup>
77
<ItemGroup>
8-
<PackageReference Include="System.Memory" />
9-
<PackageReference Include="System.ValueTuple" />
10-
<PackageReference Include="System.Runtime.InteropServices.RuntimeInformation" />
11-
<PackageReference Include="System.Net.Http" />
12-
<PackageReference Include="System.Threading.Tasks.Extensions" />
138
<Compile Include="..\Consume\*.cs" />
149
</ItemGroup>
1510
<Import Project="$(SolutionDir)\Polyfill\Polyfill.targets" />

src/Polyfill/Polyfill_Process.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ namespace Polyfills;
1111

1212
static partial class Polyfill
1313
{
14-
#if NETFRAMEWORK || NETSTANDARD || NETCOREAPP2X
14+
#if NETFRAMEWORK || NETSTANDARD || NETCOREAPP2X || WINDOWS_UWP
1515

1616
/// <summary>
1717
/// Immediately stops the associated process, and optionally its child/descendent processes.

src/Polyfill/ReadOnlySpanAction.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#pragma warning disable
33

44
#if FeatureMemory
5-
#if NETFRAMEWORK || NETSTANDARD2_0 || NETCOREAPP2X
5+
#if NETFRAMEWORK || NETSTANDARD2_0 || NETCOREAPP2_0 || WINDOWS_UWP
66
#nullable enable
77

88
namespace System.Buffers;

src/Polyfill/SpanAction.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#pragma warning disable
33

44
#if FeatureMemory
5-
#if NETFRAMEWORK || NETSTANDARD2_0 || NETCOREAPP2X
5+
#if NETFRAMEWORK || NETSTANDARD2_0 || NETCOREAPP2_0 || WINDOWS_UWP
66
#nullable enable
77

88
namespace System.Buffers;

src/PolyfillUwp.sln

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.1.32120.378
5+
MinimumVisualStudioVersion = 16.0.29201.188
6+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{9A6C4741-C83D-4E05-A62F-8049F65B9B6C}"
7+
ProjectSection(SolutionItems) = preProject
8+
.editorconfig = .editorconfig
9+
.gitattributes = .gitattributes
10+
..\.gitignore = ..\.gitignore
11+
appveyor.yml = appveyor.yml
12+
Directory.Build.props = Directory.Build.props
13+
Directory.Packages.props = Directory.Packages.props
14+
global.json = global.json
15+
mdsnippets.json = mdsnippets.json
16+
..\readme.md = ..\readme.md
17+
EndProjectSection
18+
EndProject
19+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ConsumeUwp", "ConsumeUwp\ConsumeUwp.csproj", "{1F7D9DD0-A69C-40FB-B578-655679FF3143}"
20+
EndProject
21+
Global
22+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
23+
Debug|Any CPU = Debug|Any CPU
24+
Release|Any CPU = Release|Any CPU
25+
EndGlobalSection
26+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
27+
{698FB675-3480-4107-8CAE-51452C6138CE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
28+
{698FB675-3480-4107-8CAE-51452C6138CE}.Debug|Any CPU.Build.0 = Debug|Any CPU
29+
{698FB675-3480-4107-8CAE-51452C6138CE}.Release|Any CPU.ActiveCfg = Release|Any CPU
30+
{698FB675-3480-4107-8CAE-51452C6138CE}.Release|Any CPU.Build.0 = Release|Any CPU
31+
{1F7D9DD0-A69C-40FB-B578-655679FF3143}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
32+
{1F7D9DD0-A69C-40FB-B578-655679FF3143}.Debug|Any CPU.Build.0 = Debug|Any CPU
33+
{1F7D9DD0-A69C-40FB-B578-655679FF3143}.Release|Any CPU.ActiveCfg = Release|Any CPU
34+
{1F7D9DD0-A69C-40FB-B578-655679FF3143}.Release|Any CPU.Build.0 = Release|Any CPU
35+
EndGlobalSection
36+
GlobalSection(SolutionProperties) = preSolution
37+
HideSolutionNode = FALSE
38+
EndGlobalSection
39+
GlobalSection(ExtensibilityGlobals) = postSolution
40+
SolutionGuid = {B0B94980-5385-4EC6-A0EE-C9A191DDFC05}
41+
EndGlobalSection
42+
EndGlobal

src/PolyfillUwp.slnx

Lines changed: 0 additions & 15 deletions
This file was deleted.

src/appveyor.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ build_script:
2929
- dotnet build src/Polyfill.slnx --configuration Release --verbosity quiet
3030
- pwsh: ./src/run-tests.ps1
3131
- dotnet build src/PolyfillTrimmed.slnf --target PublishAll --configuration Release
32+
- msbuild.exe src/PolyfillUwp.sln /p:Configuration=Release -verbosity:quiet -restore
33+
- msbuild.exe src/PolyfillUwp.sln /p:Configuration=Release -verbosity:quiet
3234

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

0 commit comments

Comments
 (0)