Merge pull request #50 from nventive/dev/jela/nuget-update
Update the playground to latest
This commit is contained in:
Коммит
fe63ba254b
|
@ -56,15 +56,6 @@ jobs:
|
|||
logProjectEvents: false
|
||||
createLogFile: false
|
||||
|
||||
- task: DotNetCoreCLI@2
|
||||
inputs:
|
||||
command: publish
|
||||
publishWebProjects: false
|
||||
projects: src\Uno.Playground.AspnetShell\Uno.Playground.AspnetShell.csproj
|
||||
arguments: --configuration Release --output $(Build.ArtifactStagingDirectory)/web
|
||||
zipAfterPublish: true
|
||||
modifyOutputPath: true
|
||||
|
||||
- task: DotNetCoreCLI@2
|
||||
inputs:
|
||||
command: publish
|
||||
|
|
|
@ -1,5 +0,0 @@
|
|||
wwwroot/*
|
||||
|
||||
!wwwroot/*.ico
|
||||
!wwwroot/google*
|
||||
|
|
@ -1,18 +0,0 @@
|
|||
using Microsoft.AspNetCore;
|
||||
using Microsoft.AspNetCore.Hosting;
|
||||
|
||||
namespace Uno.UI.Demo.AspnetShell
|
||||
{
|
||||
public class Program
|
||||
{
|
||||
public static void Main(string[] args)
|
||||
{
|
||||
BuildWebHost(args).Run();
|
||||
}
|
||||
|
||||
public static IWebHost BuildWebHost(string[] args) =>
|
||||
WebHost.CreateDefaultBuilder(args)
|
||||
.UseStartup<Startup>()
|
||||
.Build();
|
||||
}
|
||||
}
|
|
@ -1,82 +0,0 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Net;
|
||||
using System.Text.RegularExpressions;
|
||||
using System.Threading.Tasks;
|
||||
using Microsoft.AspNetCore.Builder;
|
||||
using Microsoft.AspNetCore.Hosting;
|
||||
using Microsoft.AspNetCore.Http;
|
||||
using Microsoft.AspNetCore.Rewrite;
|
||||
using Microsoft.AspNetCore.StaticFiles;
|
||||
using Microsoft.Extensions.Configuration;
|
||||
using Microsoft.Extensions.DependencyInjection;
|
||||
|
||||
namespace Uno.UI.Demo.AspnetShell
|
||||
{
|
||||
public class Startup
|
||||
{
|
||||
public Startup(IConfiguration configuration)
|
||||
{
|
||||
Configuration = configuration;
|
||||
}
|
||||
|
||||
public IConfiguration Configuration { get; }
|
||||
|
||||
// This method gets called by the runtime. Use this method to add services to the container.
|
||||
public void ConfigureServices(IServiceCollection services)
|
||||
{
|
||||
services.AddResponseCompression(c =>
|
||||
{
|
||||
c.EnableForHttps = true;
|
||||
});
|
||||
}
|
||||
|
||||
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
|
||||
public void Configure(IApplicationBuilder app, IHostingEnvironment env)
|
||||
{
|
||||
if (env.IsDevelopment())
|
||||
{
|
||||
app.UseBrowserLink();
|
||||
app.UseDeveloperExceptionPage();
|
||||
}
|
||||
else
|
||||
{
|
||||
app.UseExceptionHandler("/error.html");
|
||||
}
|
||||
|
||||
app.UseResponseCompression();
|
||||
|
||||
// Static content
|
||||
app.UseDefaultFiles();
|
||||
app.UseStaticFiles(new StaticFileOptions
|
||||
{
|
||||
ContentTypeProvider = CreateContentTypeProvider(),
|
||||
OnPrepareResponse = ConfigureCacheControl
|
||||
});
|
||||
}
|
||||
|
||||
private static void ConfigureCacheControl(StaticFileResponseContext ctx)
|
||||
{
|
||||
if (ctx.File.Name.EndsWith(".clr", StringComparison.OrdinalIgnoreCase))
|
||||
{
|
||||
// Cache managed files for a year, based on this update:
|
||||
// https://github.com/nventive/Uno.Wasm.Bootstrap/commit/f4859452c715c54ac40b968a303a242b0399d59a
|
||||
ctx.Context.Response.Headers.Append("Cache-Control", "public,max-age=31536000");
|
||||
}
|
||||
}
|
||||
|
||||
private FileExtensionContentTypeProvider CreateContentTypeProvider()
|
||||
{
|
||||
var provider = new FileExtensionContentTypeProvider
|
||||
{
|
||||
Mappings =
|
||||
{
|
||||
[".wasm"] = "application/wasm",
|
||||
[".clr"] = "application/octet-stream"
|
||||
}
|
||||
};
|
||||
return provider;
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,24 +0,0 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk.Web">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>netcoreapp2.0</TargetFramework>
|
||||
<TypeScriptToolsVersion>3.0</TypeScriptToolsVersion>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Compile Remove="wwwroot\playground\**" />
|
||||
<Content Remove="wwwroot\playground\**" />
|
||||
<EmbeddedResource Remove="wwwroot\playground\**" />
|
||||
<None Remove="wwwroot\playground\**" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.AspNetCore.All" Version="2.0.9" />
|
||||
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="2.0.4" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<DotNetCliToolReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Tools" Version="2.0.3" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
|
@ -1,10 +0,0 @@
|
|||
{
|
||||
"Logging": {
|
||||
"IncludeScopes": false,
|
||||
"LogLevel": {
|
||||
"Default": "Debug",
|
||||
"System": "Information",
|
||||
"Microsoft": "Information"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,10 +0,0 @@
|
|||
{
|
||||
"Logging": {
|
||||
"IncludeScopes": false,
|
||||
"LogLevel": {
|
||||
"Default": "Warning"
|
||||
}
|
||||
},
|
||||
"ConnectionStrings": {
|
||||
}
|
||||
}
|
|
@ -1,38 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<configuration>
|
||||
<system.web>
|
||||
<customErrors mode="Off"/>
|
||||
</system.web>
|
||||
|
||||
<system.webServer>
|
||||
<urlCompression doStaticCompression="true" doDynamicCompression="true" />
|
||||
|
||||
<staticContent>
|
||||
<mimeMap fileExtension=".wasm" mimeType="application/wasm" />
|
||||
<mimeMap fileExtension=".clr" mimeType="application/octet-stream" />
|
||||
<mimeMap fileExtension=".woff2" mimeType="application/woff2" />
|
||||
</staticContent>
|
||||
|
||||
<httpCompression maxDiskSpaceUsage="500"
|
||||
noCompressionForRange="false"
|
||||
doDiskSpaceLimiting="false"
|
||||
dynamicCompressionDisableCpuUsage="100"
|
||||
dynamicCompressionEnableCpuUsage="0"
|
||||
staticCompressionEnableCpuUsage="0"
|
||||
staticCompressionDisableCpuUsage="100"
|
||||
staticCompressionIgnoreHitFrequency="true">
|
||||
<dynamicTypes>
|
||||
<clear />
|
||||
<add enabled="true" mimeType="application/wasm"/>
|
||||
<add enabled="true" mimeType="application/octet-stream"/>
|
||||
<add enabled="false" mimeType="*/*"/>
|
||||
</dynamicTypes>
|
||||
<staticTypes>
|
||||
<clear />
|
||||
<add enabled="true" mimeType="application/wasm"/>
|
||||
<add enabled="true" mimeType="application/octet-stream"/>
|
||||
<add enabled="false" mimeType="*/*"/>
|
||||
</staticTypes>
|
||||
</httpCompression>
|
||||
</system.webServer>
|
||||
</configuration>
|
|
@ -50,7 +50,7 @@
|
|||
<WarningLevel>4</WarningLevel>
|
||||
<AndroidUseSharedRuntime>False</AndroidUseSharedRuntime>
|
||||
<AndroidLinkMode>SdkOnly</AndroidLinkMode>
|
||||
<AotAssemblies>true</AotAssemblies>
|
||||
<AotAssemblies>false</AotAssemblies>
|
||||
<EnableLLVM>false</EnableLLVM>
|
||||
<AndroidEnableSGenConcurrent>true</AndroidEnableSGenConcurrent>
|
||||
<AndroidCreatePackagePerAbi>false</AndroidCreatePackagePerAbi>
|
||||
|
@ -84,10 +84,10 @@
|
|||
<Version>1.30.0-dev.102</Version>
|
||||
</PackageReference>
|
||||
<PackageReference Include="Uno.Core">
|
||||
<Version>1.26.0-dev.58</Version>
|
||||
<Version>1.28.0-dev.86</Version>
|
||||
</PackageReference>
|
||||
<PackageReference Include="Uno.UI">
|
||||
<Version>1.43.0-dev.619</Version>
|
||||
<Version>1.45.0-dev.1327</Version>
|
||||
</PackageReference>
|
||||
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="1.1.1" />
|
||||
<PackageReference Include="Microsoft.Extensions.Logging.Filter" Version="1.1.1" />
|
||||
|
|
|
@ -118,8 +118,9 @@ namespace Uno.UI.Demo.Samples
|
|||
samples.SelectionChanged += Samples_SelectionChanged;
|
||||
samples.IsEnabled = true;
|
||||
}
|
||||
catch (Exception)
|
||||
catch (Exception e)
|
||||
{
|
||||
Console.WriteLine(e);
|
||||
samples.ItemsSource = new[] {new SampleForDisplay(new SampleCategory(), new Sample {Title = "[Error loading samples]"})};
|
||||
}
|
||||
}
|
||||
|
@ -508,12 +509,7 @@ namespace Uno.UI.Demo.Samples
|
|||
}
|
||||
private static HttpClient CreateHttp()
|
||||
{
|
||||
#if __WASM__
|
||||
var handler = new Wasm.WasmHttpHandler();
|
||||
var httpClient = new HttpClient(handler);
|
||||
#else
|
||||
var httpClient = new HttpClient();
|
||||
#endif
|
||||
httpClient.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
|
||||
httpClient.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("text/json"));
|
||||
return httpClient;
|
||||
|
|
|
@ -20,10 +20,10 @@
|
|||
<Version>1.30.0-dev.102</Version>
|
||||
</PackageReference>
|
||||
<PackageReference Include="Uno.Core">
|
||||
<Version>1.26.0-dev.58</Version>
|
||||
<Version>1.28.0-dev.86</Version>
|
||||
</PackageReference>
|
||||
<PackageReference Include="Uno.UI">
|
||||
<Version>1.43.0-dev.619</Version>
|
||||
<Version>1.45.0-dev.1327</Version>
|
||||
</PackageReference>
|
||||
</ItemGroup>
|
||||
<PropertyGroup>
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
<linker>
|
||||
<assembly fullname="Uno.UI">
|
||||
<type fullname="*" />
|
||||
</assembly>
|
||||
<assembly fullname="Uno.Playground.WASM" />
|
||||
<assembly fullname="Uno.UI" />
|
||||
<assembly fullname="System.Core">
|
||||
<!-- This is required by JSon.NET and any expression.Compile caller -->
|
||||
<type fullname="System.Linq.Expressions*" />
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
"windowsAuthentication": false,
|
||||
"anonymousAuthentication": true,
|
||||
"iisExpress": {
|
||||
"applicationUrl": "http://localhost:59341/",
|
||||
"applicationUrl": "http://localhost:51256/",
|
||||
"sslPort": 0
|
||||
}
|
||||
},
|
||||
|
@ -15,13 +15,13 @@
|
|||
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||
}
|
||||
},
|
||||
"Uno.UI.Demo.AspnetShell": {
|
||||
"Uno.Playground.WASM": {
|
||||
"commandName": "Project",
|
||||
"launchBrowser": true,
|
||||
"environmentVariables": {
|
||||
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||
},
|
||||
"applicationUrl": "http://localhost:59342/"
|
||||
"applicationUrl": "http://localhost:51258/"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,4 +1,4 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<Project Sdk="Microsoft.NET.Sdk.Web">
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
|
@ -11,6 +11,7 @@
|
|||
<RootNamespace>Uno.Playground.WASM</RootNamespace>
|
||||
<NoWarn>NU1701</NoWarn>
|
||||
<WasmHead>true</WasmHead>
|
||||
<MonoRuntimeDebuggerEnabled Condition="'$(Configuration)'=='Debug'">true</MonoRuntimeDebuggerEnabled>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup Condition="'$(TargetFramework)'!='net46'">
|
||||
|
@ -27,9 +28,6 @@
|
|||
|
||||
<ItemGroup>
|
||||
<Content Include="..\Uno.Playground.UWP\Assets\*.png" Link="Assets\%(FileName)%(Extension)" />
|
||||
<Content Include="Fonts\winjs-symbols.woff2" />
|
||||
<Content Include="ts\GoogleAnalytics.ts" />
|
||||
<Content Include="web.config" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
|
@ -41,10 +39,6 @@
|
|||
<UpToDateCheckInput Include="WasmScripts\**\*" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<None Remove="web.config" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<LinkerDescriptor Include="LinkerConfig.xml" />
|
||||
</ItemGroup>
|
||||
|
@ -59,11 +53,12 @@
|
|||
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
|
||||
</PackageReference>
|
||||
<PackageReference Include="Newtonsoft.Json" Version="11.0.2" />
|
||||
<PackageReference Include="Uno.UI" Version="1.43.0-dev.619" />
|
||||
<PackageReference Include="Uno.Wasm.Bootstrap" Version="1.0.0-dev.131" />
|
||||
<PackageReference Include="Uno.UI" Version="1.45.0-dev.1327" />
|
||||
<PackageReference Include="Uno.Wasm.Bootstrap" Version="1.0.0-dev.260" />
|
||||
<PackageReference Include="Uno.CodeGen" Version="1.30.0-dev.102" />
|
||||
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="1.1.1" />
|
||||
<PackageReference Include="Microsoft.Extensions.Logging.Filter" Version="1.1.1" />
|
||||
<DotNetCliToolReference Include="Uno.Wasm.Bootstrap.Cli" Version="1.0.0-dev.244" />
|
||||
</ItemGroup>
|
||||
|
||||
<Target Name="CopyPlaygroundFiles" AfterTargets="BuildDist">
|
||||
|
|
|
@ -1,38 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<configuration>
|
||||
<system.web>
|
||||
<customErrors mode="Off"/>
|
||||
</system.web>
|
||||
|
||||
<system.webServer>
|
||||
<urlCompression doStaticCompression="true" doDynamicCompression="true" />
|
||||
|
||||
<staticContent>
|
||||
<mimeMap fileExtension=".wasm" mimeType="application/wasm" />
|
||||
<mimeMap fileExtension=".clr" mimeType="application/octet-stream" />
|
||||
<mimeMap fileExtension=".woff2" mimeType="application/woff2" />
|
||||
</staticContent>
|
||||
|
||||
<httpCompression maxDiskSpaceUsage="500"
|
||||
noCompressionForRange="false"
|
||||
doDiskSpaceLimiting="false"
|
||||
dynamicCompressionDisableCpuUsage="100"
|
||||
dynamicCompressionEnableCpuUsage="0"
|
||||
staticCompressionEnableCpuUsage="0"
|
||||
staticCompressionDisableCpuUsage="100"
|
||||
staticCompressionIgnoreHitFrequency="true">
|
||||
<dynamicTypes>
|
||||
<clear />
|
||||
<add enabled="true" mimeType="application/wasm"/>
|
||||
<add enabled="true" mimeType="application/octet-stream"/>
|
||||
<add enabled="false" mimeType="*/*"/>
|
||||
</dynamicTypes>
|
||||
<staticTypes>
|
||||
<clear />
|
||||
<add enabled="true" mimeType="application/wasm"/>
|
||||
<add enabled="true" mimeType="application/octet-stream"/>
|
||||
<add enabled="false" mimeType="*/*"/>
|
||||
</staticTypes>
|
||||
</httpCompression>
|
||||
</system.webServer>
|
||||
</configuration>
|
|
@ -185,10 +185,10 @@
|
|||
<Version>1.30.0-dev.102</Version>
|
||||
</PackageReference>
|
||||
<PackageReference Include="Uno.Core">
|
||||
<Version>1.26.0-dev.58</Version>
|
||||
<Version>1.28.0-dev.86</Version>
|
||||
</PackageReference>
|
||||
<PackageReference Include="Uno.UI">
|
||||
<Version>1.43.0-dev.619</Version>
|
||||
<Version>1.45.0-dev.1327</Version>
|
||||
</PackageReference>
|
||||
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="1.1.1" />
|
||||
<PackageReference Include="Microsoft.Extensions.Logging.Filter" Version="1.1.1" />
|
||||
|
|
|
@ -1,13 +1,8 @@
|
|||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio 15
|
||||
VisualStudioVersion = 15.0.27130.2036
|
||||
# Visual Studio Version 16
|
||||
VisualStudioVersion = 16.0.28705.295
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Uno.Playground.AspnetShell", "Uno.Playground.AspnetShell\Uno.Playground.AspnetShell.csproj", "{FB046231-9F21-4967-B0F7-88E1A200FC53}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{25DA869C-40CB-4C9A-A1E8-A685B7D4EA90} = {25DA869C-40CB-4C9A-A1E8-A685B7D4EA90}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Uno.Playground.WASM", "Uno.Playground.WASM\Uno.Playground.WASM.csproj", "{25DA869C-40CB-4C9A-A1E8-A685B7D4EA90}"
|
||||
EndProject
|
||||
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "Uno.Playground.Shared", "Uno.Playground.Shared\Uno.Playground.Shared.shproj", "{6279C845-92F8-4333-AB99-3D213163593C}"
|
||||
|
@ -68,76 +63,6 @@ Global
|
|||
Release|x86 = Release|x86
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{FB046231-9F21-4967-B0F7-88E1A200FC53}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{FB046231-9F21-4967-B0F7-88E1A200FC53}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU
|
||||
{FB046231-9F21-4967-B0F7-88E1A200FC53}.Ad-Hoc|ARM.ActiveCfg = Release|Any CPU
|
||||
{FB046231-9F21-4967-B0F7-88E1A200FC53}.Ad-Hoc|ARM.Build.0 = Release|Any CPU
|
||||
{FB046231-9F21-4967-B0F7-88E1A200FC53}.Ad-Hoc|iPhone.ActiveCfg = Release|Any CPU
|
||||
{FB046231-9F21-4967-B0F7-88E1A200FC53}.Ad-Hoc|iPhone.Build.0 = Release|Any CPU
|
||||
{FB046231-9F21-4967-B0F7-88E1A200FC53}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU
|
||||
{FB046231-9F21-4967-B0F7-88E1A200FC53}.Ad-Hoc|iPhoneSimulator.Build.0 = Release|Any CPU
|
||||
{FB046231-9F21-4967-B0F7-88E1A200FC53}.Ad-Hoc|x64.ActiveCfg = Release|Any CPU
|
||||
{FB046231-9F21-4967-B0F7-88E1A200FC53}.Ad-Hoc|x64.Build.0 = Release|Any CPU
|
||||
{FB046231-9F21-4967-B0F7-88E1A200FC53}.Ad-Hoc|x86.ActiveCfg = Release|Any CPU
|
||||
{FB046231-9F21-4967-B0F7-88E1A200FC53}.Ad-Hoc|x86.Build.0 = Release|Any CPU
|
||||
{FB046231-9F21-4967-B0F7-88E1A200FC53}.AppStore|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{FB046231-9F21-4967-B0F7-88E1A200FC53}.AppStore|Any CPU.Build.0 = Release|Any CPU
|
||||
{FB046231-9F21-4967-B0F7-88E1A200FC53}.AppStore|ARM.ActiveCfg = Release|Any CPU
|
||||
{FB046231-9F21-4967-B0F7-88E1A200FC53}.AppStore|ARM.Build.0 = Release|Any CPU
|
||||
{FB046231-9F21-4967-B0F7-88E1A200FC53}.AppStore|iPhone.ActiveCfg = Release|Any CPU
|
||||
{FB046231-9F21-4967-B0F7-88E1A200FC53}.AppStore|iPhone.Build.0 = Release|Any CPU
|
||||
{FB046231-9F21-4967-B0F7-88E1A200FC53}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU
|
||||
{FB046231-9F21-4967-B0F7-88E1A200FC53}.AppStore|iPhoneSimulator.Build.0 = Release|Any CPU
|
||||
{FB046231-9F21-4967-B0F7-88E1A200FC53}.AppStore|x64.ActiveCfg = Release|Any CPU
|
||||
{FB046231-9F21-4967-B0F7-88E1A200FC53}.AppStore|x64.Build.0 = Release|Any CPU
|
||||
{FB046231-9F21-4967-B0F7-88E1A200FC53}.AppStore|x86.ActiveCfg = Release|Any CPU
|
||||
{FB046231-9F21-4967-B0F7-88E1A200FC53}.AppStore|x86.Build.0 = Release|Any CPU
|
||||
{FB046231-9F21-4967-B0F7-88E1A200FC53}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{FB046231-9F21-4967-B0F7-88E1A200FC53}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{FB046231-9F21-4967-B0F7-88E1A200FC53}.Debug|ARM.ActiveCfg = Debug|Any CPU
|
||||
{FB046231-9F21-4967-B0F7-88E1A200FC53}.Debug|ARM.Build.0 = Debug|Any CPU
|
||||
{FB046231-9F21-4967-B0F7-88E1A200FC53}.Debug|iPhone.ActiveCfg = Debug|Any CPU
|
||||
{FB046231-9F21-4967-B0F7-88E1A200FC53}.Debug|iPhone.Build.0 = Debug|Any CPU
|
||||
{FB046231-9F21-4967-B0F7-88E1A200FC53}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
|
||||
{FB046231-9F21-4967-B0F7-88E1A200FC53}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
|
||||
{FB046231-9F21-4967-B0F7-88E1A200FC53}.Debug|x64.ActiveCfg = Debug|Any CPU
|
||||
{FB046231-9F21-4967-B0F7-88E1A200FC53}.Debug|x64.Build.0 = Debug|Any CPU
|
||||
{FB046231-9F21-4967-B0F7-88E1A200FC53}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||
{FB046231-9F21-4967-B0F7-88E1A200FC53}.Debug|x86.Build.0 = Debug|Any CPU
|
||||
{FB046231-9F21-4967-B0F7-88E1A200FC53}.Release_iOS|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{FB046231-9F21-4967-B0F7-88E1A200FC53}.Release_iOS|ARM.ActiveCfg = Release|Any CPU
|
||||
{FB046231-9F21-4967-B0F7-88E1A200FC53}.Release_iOS|ARM.Build.0 = Release|Any CPU
|
||||
{FB046231-9F21-4967-B0F7-88E1A200FC53}.Release_iOS|iPhone.ActiveCfg = Release|Any CPU
|
||||
{FB046231-9F21-4967-B0F7-88E1A200FC53}.Release_iOS|iPhone.Build.0 = Release|Any CPU
|
||||
{FB046231-9F21-4967-B0F7-88E1A200FC53}.Release_iOS|iPhoneSimulator.ActiveCfg = Release|Any CPU
|
||||
{FB046231-9F21-4967-B0F7-88E1A200FC53}.Release_iOS|iPhoneSimulator.Build.0 = Release|Any CPU
|
||||
{FB046231-9F21-4967-B0F7-88E1A200FC53}.Release_iOS|x64.ActiveCfg = Release|Any CPU
|
||||
{FB046231-9F21-4967-B0F7-88E1A200FC53}.Release_iOS|x64.Build.0 = Release|Any CPU
|
||||
{FB046231-9F21-4967-B0F7-88E1A200FC53}.Release_iOS|x86.ActiveCfg = Release|Any CPU
|
||||
{FB046231-9F21-4967-B0F7-88E1A200FC53}.Release_iOS|x86.Build.0 = Release|Any CPU
|
||||
{FB046231-9F21-4967-B0F7-88E1A200FC53}.Release_UWP|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{FB046231-9F21-4967-B0F7-88E1A200FC53}.Release_UWP|ARM.ActiveCfg = Release|Any CPU
|
||||
{FB046231-9F21-4967-B0F7-88E1A200FC53}.Release_UWP|ARM.Build.0 = Release|Any CPU
|
||||
{FB046231-9F21-4967-B0F7-88E1A200FC53}.Release_UWP|iPhone.ActiveCfg = Release|Any CPU
|
||||
{FB046231-9F21-4967-B0F7-88E1A200FC53}.Release_UWP|iPhone.Build.0 = Release|Any CPU
|
||||
{FB046231-9F21-4967-B0F7-88E1A200FC53}.Release_UWP|iPhoneSimulator.ActiveCfg = Release|Any CPU
|
||||
{FB046231-9F21-4967-B0F7-88E1A200FC53}.Release_UWP|iPhoneSimulator.Build.0 = Release|Any CPU
|
||||
{FB046231-9F21-4967-B0F7-88E1A200FC53}.Release_UWP|x64.ActiveCfg = Release|Any CPU
|
||||
{FB046231-9F21-4967-B0F7-88E1A200FC53}.Release_UWP|x64.Build.0 = Release|Any CPU
|
||||
{FB046231-9F21-4967-B0F7-88E1A200FC53}.Release_UWP|x86.ActiveCfg = Release|Any CPU
|
||||
{FB046231-9F21-4967-B0F7-88E1A200FC53}.Release_UWP|x86.Build.0 = Release|Any CPU
|
||||
{FB046231-9F21-4967-B0F7-88E1A200FC53}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{FB046231-9F21-4967-B0F7-88E1A200FC53}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{FB046231-9F21-4967-B0F7-88E1A200FC53}.Release|ARM.ActiveCfg = Release|Any CPU
|
||||
{FB046231-9F21-4967-B0F7-88E1A200FC53}.Release|ARM.Build.0 = Release|Any CPU
|
||||
{FB046231-9F21-4967-B0F7-88E1A200FC53}.Release|iPhone.ActiveCfg = Release|Any CPU
|
||||
{FB046231-9F21-4967-B0F7-88E1A200FC53}.Release|iPhone.Build.0 = Release|Any CPU
|
||||
{FB046231-9F21-4967-B0F7-88E1A200FC53}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
|
||||
{FB046231-9F21-4967-B0F7-88E1A200FC53}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
|
||||
{FB046231-9F21-4967-B0F7-88E1A200FC53}.Release|x64.ActiveCfg = Release|Any CPU
|
||||
{FB046231-9F21-4967-B0F7-88E1A200FC53}.Release|x64.Build.0 = Release|Any CPU
|
||||
{FB046231-9F21-4967-B0F7-88E1A200FC53}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{FB046231-9F21-4967-B0F7-88E1A200FC53}.Release|x86.Build.0 = Release|Any CPU
|
||||
{25DA869C-40CB-4C9A-A1E8-A685B7D4EA90}.Ad-Hoc|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{25DA869C-40CB-4C9A-A1E8-A685B7D4EA90}.Ad-Hoc|Any CPU.Build.0 = Debug|Any CPU
|
||||
{25DA869C-40CB-4C9A-A1E8-A685B7D4EA90}.Ad-Hoc|ARM.ActiveCfg = Debug|Any CPU
|
||||
|
|
Загрузка…
Ссылка в новой задаче