Skip to content

Sample/winui3 desktop #114

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

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
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
76 changes: 76 additions & 0 deletions samples/MvvmSample.Core/Helpers/EmbeddedResources.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

using System;
using System.Diagnostics.Contracts;
using System.IO;
using System.Reflection;
using System.Threading.Tasks;

namespace MvvmSample.Core.Helpers
{
/// <summary>
/// A helper class to retrieve embedded resources from the executing assembly.
/// </summary>
public static class EmbeddedResources
{
/// <summary>
/// The sequence of available directory separators for all platforms.
/// </summary>
private static readonly char[] PathSeparators = { Path.DirectorySeparatorChar, Path.AltDirectorySeparatorChar };

/// <summary>
/// Returns a <see cref="Stream"/> instance for a specified manifest file.
/// </summary>
/// <param name="assembly">The target <see cref="Assembly"/> instance.</param>
/// <param name="path">The relative path of the file to open, with respect of the root of the assembly.</param>
/// <returns>A <see cref="Stream"/> for the requested file.</returns>
/// <exception cref="ArgumentException">Thrown when <paramref name="path"/> does not represent a valid file.</exception>
/// <remarks>
/// The relative path should not include the name of the given assembly. For instance, consider an embedded
/// resource file that is located at the path <c>/Assets/myfile.txt</c> into the assembly <c>MyAssembly</c>.
/// You can then invoke <see cref="GetStream(Assembly,string)"/> with <paramref name="path"/> equal to either
/// <c>/Assets/myfile.txt</c>, <c>\Assets\myfile.txt</c>, <c>Assets/myfile.txt</c> or similar combinations.
/// This method will reconstruct the full path of the target file (which is <c>MyAssembly.Assets.myfile.txt</c>
/// in this case, retrieve the file and return a <see cref="Stream"/> to use to read from it.
/// </remarks>
[Pure]
public static Stream GetStream(Assembly assembly, string path)
{
string[] parts = path.Split(PathSeparators, StringSplitOptions.RemoveEmptyEntries);
string filename = $"{assembly.GetName().Name}.{string.Join(".", parts)}";

Stream? stream = assembly.GetManifestResourceStream(filename);

if (stream is null)
{
static void Throw() => throw new ArgumentException("The input path was not valid or the item didn't exist", nameof(path));

Throw();
}

return stream!;
}

/// <summary>
/// Returns the contents of a specified manifest file, as a <see cref="string"/>.
/// </summary>
/// <param name="assembly">The target <see cref="Assembly"/> instance.</param>
/// <param name="path">The relative path of the file to read, with respect of the root of the assembly.</param>
/// <returns>The text contents of the specified manifest file.</returns>
/// <exception cref="ArgumentException">Thrown when <paramref name="path"/> does not represent a valid file.</exception>
/// <remarks>
/// This method will automatically get the assembly for the caller to retrieve the target file.
/// See remarks for <see cref="GetStream(Assembly,string)"/> for more info.
/// </remarks>
[Pure]
public static async Task<string> GetStringAsync(Assembly assembly, string path)
{
using Stream stream = GetStream(assembly, path);
using StreamReader reader = new(stream);

return await reader.ReadToEndAsync();
}
}
}
56 changes: 23 additions & 33 deletions samples/MvvmSample.Core/MvvmSample.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,50 +2,40 @@

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<LangVersion>8.0</LangVersion>
<LangVersion>9.0</LangVersion>
<Nullable>enable</Nullable>
<UserSecretsId>4e66f7b4-01a8-4f00-8733-4ae6a08c741f</UserSecretsId>
</PropertyGroup>

<ItemGroup>
<None Remove="Docs\AsyncRelayCommand.md" />
<None Remove="Docs\Introduction.md" />
<None Remove="Docs\Ioc.md" />
<None Remove="Docs\Messenger.md" />
<None Remove="Docs\ObservableObject.md" />
<None Remove="Docs\ObservableRecipient.md" />
<None Remove="Docs\PuttingThingsTogether.md" />
<None Remove="Docs\RelayCommand.md" />
</ItemGroup>

<ItemGroup>
<Content Include="Docs\AsyncRelayCommand.md">
<EmbeddedResource Include="Docs\AsyncRelayCommand.md">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Docs\Introduction.md">
</EmbeddedResource>
<EmbeddedResource Include="Docs\Introduction.md">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Docs\Ioc.md">
</EmbeddedResource>
<EmbeddedResource Include="Docs\Ioc.md">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Docs\Messenger.md">
</EmbeddedResource>
<EmbeddedResource Include="Docs\Messenger.md">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Docs\ObservableObject.md">
</EmbeddedResource>
<EmbeddedResource Include="Docs\ObservableObject.md">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Docs\ObservableRecipient.md">
</EmbeddedResource>
<EmbeddedResource Include="Docs\ObservableRecipient.md">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Docs\PuttingThingsTogether.md">
</EmbeddedResource>
<EmbeddedResource Include="Docs\PuttingThingsTogether.md">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Docs\RelayCommand.md">
</EmbeddedResource>
<EmbeddedResource Include="Docs\RelayCommand.md">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Toolkit.Mvvm" Version="7.0.0" />
<PackageReference Include="Nito.AsyncEx.Coordination" Version="5.1.0" />
<PackageReference Include="Refit" Version="5.2.1" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Toolkit.Mvvm" Version="7.0.0-preview5" />
<PackageReference Include="Nito.AsyncEx.Coordination" Version="5.1.0" />
<PackageReference Include="Refit" Version="5.2.1" />
</ItemGroup>
</Project>
23 changes: 10 additions & 13 deletions samples/MvvmSample.Core/ViewModels/SamplePageViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,11 @@

using System.Collections.Generic;
using System.IO;
using System.Reflection;
using System.Threading.Tasks;
using Microsoft.Toolkit.Mvvm.ComponentModel;
using Microsoft.Toolkit.Mvvm.DependencyInjection;
using Microsoft.Toolkit.Mvvm.Input;
using MvvmSample.Core.Helpers;
using MvvmSample.Core.Services;

namespace MvvmSample.Core.ViewModels
{
Expand All @@ -18,11 +17,7 @@ namespace MvvmSample.Core.ViewModels
/// </summary>
public class SamplePageViewModel : ObservableObject
{
private IReadOnlyDictionary<string, string> texts;
/// <summary>
/// The <see cref="IFilesService"/> instance currently in use.
/// </summary>
private readonly IFilesService FilesServices = Ioc.Default.GetRequiredService<IFilesService>();
private IReadOnlyDictionary<string, string>? texts;

public SamplePageViewModel()
{
Expand All @@ -34,7 +29,10 @@ public SamplePageViewModel()
/// </summary>
public IAsyncRelayCommand<string> LoadDocsCommand { get; }

public IReadOnlyDictionary<string, string> Texts
/// <summary>
/// Gets or sets the collection of loaded paragraphs.
/// </summary>
public IReadOnlyDictionary<string, string>? Texts
{
get => texts;
set => SetProperty(ref texts, value);
Expand All @@ -54,15 +52,14 @@ public string GetParagraph(string key)
/// Implements the logic for <see cref="LoadDocsCommand"/>.
/// </summary>
/// <param name="name">The name of the docs file to load.</param>
private async Task LoadDocsAsync(string name)
private async Task LoadDocsAsync(string? name)
{
// Skip if the loading has already started
if (!(LoadDocsCommand.ExecutionTask is null)) return;

var path = Path.Combine("Assets", "docs", $"{name}.md");
using var stream = await FilesServices.OpenForReadAsync(path);
using var reader = new StreamReader(stream);
var text = await reader.ReadToEndAsync();
string
path = Path.Combine("Docs", $"{name!}.md"),
text = await EmbeddedResources.GetStringAsync(Assembly.GetExecutingAssembly(), path);

Texts = MarkdownHelper.GetParagraphs(text);

Expand Down
34 changes: 0 additions & 34 deletions samples/MvvmSampleUwp/MvvmSampleUwp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -339,40 +339,6 @@
<Generator>MSBuild:Compile</Generator>
</Page>
</ItemGroup>
<ItemGroup>
<Content Include="..\MvvmSample.Core\Docs\AsyncRelayCommand.md">
<Link>Assets\docs\AsyncRelayCommand.md</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="..\MvvmSample.Core\Docs\Introduction.md">
<Link>Assets\docs\Introduction.md</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="..\MvvmSample.Core\Docs\Ioc.md">
<Link>Assets\docs\Ioc.md</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="..\MvvmSample.Core\Docs\Messenger.md">
<Link>Assets\docs\Messenger.md</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="..\MvvmSample.Core\Docs\ObservableObject.md">
<Link>Assets\docs\ObservableObject.md</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="..\MvvmSample.Core\Docs\ObservableRecipient.md">
<Link>Assets\docs\ObservableRecipient.md</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="..\MvvmSample.Core\Docs\PuttingThingsTogether.md">
<Link>Assets\docs\PuttingThingsTogether.md</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="..\MvvmSample.Core\Docs\RelayCommand.md">
<Link>Assets\docs\RelayCommand.md</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\MvvmSample.Core\MvvmSample.Core.csproj">
<Project>{28e524f7-61b3-455d-8cbd-615bc4fde814}</Project>
Expand Down
119 changes: 119 additions & 0 deletions samples/MvvmSampleWinUI3Desktop.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,119 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.31004.235
MinimumVisualStudioVersion = 10.0.40219.1
Project("{C7167F0D-BC9F-4E6E-AFE1-012C56B48DB5}") = "MvvmSampleWinUI3Desktop (Package)", "MvvmSampleWinUI3Desktop\MvvmSampleWinUI3Desktop (Package)\MvvmSampleWinUI3Desktop (Package).wapproj", "{8E012FC5-B17A-4E98-A8CA-ED7571F9274E}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MvvmSampleWinUI3Desktop", "MvvmSampleWinUI3Desktop\MvvmSampleWinUI3Desktop\MvvmSampleWinUI3Desktop.csproj", "{CB559D9F-B686-49EC-814C-FA7DC1912497}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MvvmSample.Core", "MvvmSample.Core\MvvmSample.Core.csproj", "{4437A937-EB2A-4A46-9588-E2DF5E52D647}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MvvmSampleUwp", "MvvmSampleUwp\MvvmSampleUwp.csproj", "{E667FBF4-30F2-49AC-8576-7A2B867F8F1A}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Debug|ARM = Debug|ARM
Debug|arm64 = Debug|arm64
Debug|x64 = Debug|x64
Debug|x86 = Debug|x86
Release|Any CPU = Release|Any CPU
Release|ARM = Release|ARM
Release|arm64 = Release|arm64
Release|x64 = Release|x64
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{8E012FC5-B17A-4E98-A8CA-ED7571F9274E}.Debug|Any CPU.ActiveCfg = Debug|x86
{8E012FC5-B17A-4E98-A8CA-ED7571F9274E}.Debug|ARM.ActiveCfg = Debug|x86
{8E012FC5-B17A-4E98-A8CA-ED7571F9274E}.Debug|arm64.ActiveCfg = Debug|arm64
{8E012FC5-B17A-4E98-A8CA-ED7571F9274E}.Debug|arm64.Build.0 = Debug|arm64
{8E012FC5-B17A-4E98-A8CA-ED7571F9274E}.Debug|arm64.Deploy.0 = Debug|arm64
{8E012FC5-B17A-4E98-A8CA-ED7571F9274E}.Debug|x64.ActiveCfg = Debug|x64
{8E012FC5-B17A-4E98-A8CA-ED7571F9274E}.Debug|x64.Build.0 = Debug|x64
{8E012FC5-B17A-4E98-A8CA-ED7571F9274E}.Debug|x64.Deploy.0 = Debug|x64
{8E012FC5-B17A-4E98-A8CA-ED7571F9274E}.Debug|x86.ActiveCfg = Debug|x86
{8E012FC5-B17A-4E98-A8CA-ED7571F9274E}.Debug|x86.Build.0 = Debug|x86
{8E012FC5-B17A-4E98-A8CA-ED7571F9274E}.Debug|x86.Deploy.0 = Debug|x86
{8E012FC5-B17A-4E98-A8CA-ED7571F9274E}.Release|Any CPU.ActiveCfg = Release|x86
{8E012FC5-B17A-4E98-A8CA-ED7571F9274E}.Release|ARM.ActiveCfg = Release|x86
{8E012FC5-B17A-4E98-A8CA-ED7571F9274E}.Release|arm64.ActiveCfg = Release|arm64
{8E012FC5-B17A-4E98-A8CA-ED7571F9274E}.Release|arm64.Build.0 = Release|arm64
{8E012FC5-B17A-4E98-A8CA-ED7571F9274E}.Release|arm64.Deploy.0 = Release|arm64
{8E012FC5-B17A-4E98-A8CA-ED7571F9274E}.Release|x64.ActiveCfg = Release|x64
{8E012FC5-B17A-4E98-A8CA-ED7571F9274E}.Release|x64.Build.0 = Release|x64
{8E012FC5-B17A-4E98-A8CA-ED7571F9274E}.Release|x64.Deploy.0 = Release|x64
{8E012FC5-B17A-4E98-A8CA-ED7571F9274E}.Release|x86.ActiveCfg = Release|x86
{8E012FC5-B17A-4E98-A8CA-ED7571F9274E}.Release|x86.Build.0 = Release|x86
{8E012FC5-B17A-4E98-A8CA-ED7571F9274E}.Release|x86.Deploy.0 = Release|x86
{CB559D9F-B686-49EC-814C-FA7DC1912497}.Debug|Any CPU.ActiveCfg = Debug|x86
{CB559D9F-B686-49EC-814C-FA7DC1912497}.Debug|ARM.ActiveCfg = Debug|x86
{CB559D9F-B686-49EC-814C-FA7DC1912497}.Debug|arm64.ActiveCfg = Debug|arm64
{CB559D9F-B686-49EC-814C-FA7DC1912497}.Debug|arm64.Build.0 = Debug|arm64
{CB559D9F-B686-49EC-814C-FA7DC1912497}.Debug|x64.ActiveCfg = Debug|x64
{CB559D9F-B686-49EC-814C-FA7DC1912497}.Debug|x64.Build.0 = Debug|x64
{CB559D9F-B686-49EC-814C-FA7DC1912497}.Debug|x86.ActiveCfg = Debug|x86
{CB559D9F-B686-49EC-814C-FA7DC1912497}.Debug|x86.Build.0 = Debug|x86
{CB559D9F-B686-49EC-814C-FA7DC1912497}.Release|Any CPU.ActiveCfg = Release|x86
{CB559D9F-B686-49EC-814C-FA7DC1912497}.Release|ARM.ActiveCfg = Release|x86
{CB559D9F-B686-49EC-814C-FA7DC1912497}.Release|arm64.ActiveCfg = Release|arm64
{CB559D9F-B686-49EC-814C-FA7DC1912497}.Release|arm64.Build.0 = Release|arm64
{CB559D9F-B686-49EC-814C-FA7DC1912497}.Release|x64.ActiveCfg = Release|x64
{CB559D9F-B686-49EC-814C-FA7DC1912497}.Release|x64.Build.0 = Release|x64
{CB559D9F-B686-49EC-814C-FA7DC1912497}.Release|x86.ActiveCfg = Release|x86
{CB559D9F-B686-49EC-814C-FA7DC1912497}.Release|x86.Build.0 = Release|x86
{4437A937-EB2A-4A46-9588-E2DF5E52D647}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{4437A937-EB2A-4A46-9588-E2DF5E52D647}.Debug|Any CPU.Build.0 = Debug|Any CPU
{4437A937-EB2A-4A46-9588-E2DF5E52D647}.Debug|ARM.ActiveCfg = Debug|Any CPU
{4437A937-EB2A-4A46-9588-E2DF5E52D647}.Debug|ARM.Build.0 = Debug|Any CPU
{4437A937-EB2A-4A46-9588-E2DF5E52D647}.Debug|arm64.ActiveCfg = Debug|Any CPU
{4437A937-EB2A-4A46-9588-E2DF5E52D647}.Debug|arm64.Build.0 = Debug|Any CPU
{4437A937-EB2A-4A46-9588-E2DF5E52D647}.Debug|x64.ActiveCfg = Debug|Any CPU
{4437A937-EB2A-4A46-9588-E2DF5E52D647}.Debug|x64.Build.0 = Debug|Any CPU
{4437A937-EB2A-4A46-9588-E2DF5E52D647}.Debug|x86.ActiveCfg = Debug|Any CPU
{4437A937-EB2A-4A46-9588-E2DF5E52D647}.Debug|x86.Build.0 = Debug|Any CPU
{4437A937-EB2A-4A46-9588-E2DF5E52D647}.Release|Any CPU.ActiveCfg = Release|Any CPU
{4437A937-EB2A-4A46-9588-E2DF5E52D647}.Release|Any CPU.Build.0 = Release|Any CPU
{4437A937-EB2A-4A46-9588-E2DF5E52D647}.Release|ARM.ActiveCfg = Release|Any CPU
{4437A937-EB2A-4A46-9588-E2DF5E52D647}.Release|ARM.Build.0 = Release|Any CPU
{4437A937-EB2A-4A46-9588-E2DF5E52D647}.Release|arm64.ActiveCfg = Release|Any CPU
{4437A937-EB2A-4A46-9588-E2DF5E52D647}.Release|arm64.Build.0 = Release|Any CPU
{4437A937-EB2A-4A46-9588-E2DF5E52D647}.Release|x64.ActiveCfg = Release|Any CPU
{4437A937-EB2A-4A46-9588-E2DF5E52D647}.Release|x64.Build.0 = Release|Any CPU
{4437A937-EB2A-4A46-9588-E2DF5E52D647}.Release|x86.ActiveCfg = Release|Any CPU
{4437A937-EB2A-4A46-9588-E2DF5E52D647}.Release|x86.Build.0 = Release|Any CPU
{E667FBF4-30F2-49AC-8576-7A2B867F8F1A}.Debug|Any CPU.ActiveCfg = Debug|x86
{E667FBF4-30F2-49AC-8576-7A2B867F8F1A}.Debug|ARM.ActiveCfg = Debug|ARM
{E667FBF4-30F2-49AC-8576-7A2B867F8F1A}.Debug|ARM.Build.0 = Debug|ARM
{E667FBF4-30F2-49AC-8576-7A2B867F8F1A}.Debug|ARM.Deploy.0 = Debug|ARM
{E667FBF4-30F2-49AC-8576-7A2B867F8F1A}.Debug|arm64.ActiveCfg = Debug|ARM64
{E667FBF4-30F2-49AC-8576-7A2B867F8F1A}.Debug|arm64.Build.0 = Debug|ARM64
{E667FBF4-30F2-49AC-8576-7A2B867F8F1A}.Debug|arm64.Deploy.0 = Debug|ARM64
{E667FBF4-30F2-49AC-8576-7A2B867F8F1A}.Debug|x64.ActiveCfg = Debug|x64
{E667FBF4-30F2-49AC-8576-7A2B867F8F1A}.Debug|x64.Build.0 = Debug|x64
{E667FBF4-30F2-49AC-8576-7A2B867F8F1A}.Debug|x64.Deploy.0 = Debug|x64
{E667FBF4-30F2-49AC-8576-7A2B867F8F1A}.Debug|x86.ActiveCfg = Debug|x86
{E667FBF4-30F2-49AC-8576-7A2B867F8F1A}.Debug|x86.Build.0 = Debug|x86
{E667FBF4-30F2-49AC-8576-7A2B867F8F1A}.Debug|x86.Deploy.0 = Debug|x86
{E667FBF4-30F2-49AC-8576-7A2B867F8F1A}.Release|Any CPU.ActiveCfg = Release|x86
{E667FBF4-30F2-49AC-8576-7A2B867F8F1A}.Release|ARM.ActiveCfg = Release|ARM
{E667FBF4-30F2-49AC-8576-7A2B867F8F1A}.Release|ARM.Build.0 = Release|ARM
{E667FBF4-30F2-49AC-8576-7A2B867F8F1A}.Release|ARM.Deploy.0 = Release|ARM
{E667FBF4-30F2-49AC-8576-7A2B867F8F1A}.Release|arm64.ActiveCfg = Release|ARM64
{E667FBF4-30F2-49AC-8576-7A2B867F8F1A}.Release|arm64.Build.0 = Release|ARM64
{E667FBF4-30F2-49AC-8576-7A2B867F8F1A}.Release|arm64.Deploy.0 = Release|ARM64
{E667FBF4-30F2-49AC-8576-7A2B867F8F1A}.Release|x64.ActiveCfg = Release|x64
{E667FBF4-30F2-49AC-8576-7A2B867F8F1A}.Release|x64.Build.0 = Release|x64
{E667FBF4-30F2-49AC-8576-7A2B867F8F1A}.Release|x64.Deploy.0 = Release|x64
{E667FBF4-30F2-49AC-8576-7A2B867F8F1A}.Release|x86.ActiveCfg = Release|x86
{E667FBF4-30F2-49AC-8576-7A2B867F8F1A}.Release|x86.Build.0 = Release|x86
{E667FBF4-30F2-49AC-8576-7A2B867F8F1A}.Release|x86.Deploy.0 = Release|x86
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {C9D13338-F430-461C-B906-F31D95512E65}
EndGlobalSection
EndGlobal
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading