diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-12-06 09:39:54 +0200 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-12-06 09:39:54 +0200 |
| commit | 59f73fdea8ec23aa6c5482289f9acf96079affc3 (patch) | |
| tree | 491bcf1373ab9174a0edd93c3ee46e1ee000087b /Software | |
| parent | 333611ef25aa0a51366cd613f258ffe7575d56b2 (diff) | |
| download | Tango-59f73fdea8ec23aa6c5482289f9acf96079affc3.tar.gz Tango-59f73fdea8ec23aa6c5482289f9acf96079affc3.zip | |
Implemented boot screen utility for first OS boot.
Diffstat (limited to 'Software')
15 files changed, 466 insertions, 6 deletions
diff --git a/Software/DB/Tango.mdf b/Software/DB/Tango.mdf Binary files differindex f3f337d6d..278ad7294 100644 --- a/Software/DB/Tango.mdf +++ b/Software/DB/Tango.mdf diff --git a/Software/DB/Tango_log.ldf b/Software/DB/Tango_log.ldf Binary files differindex 6e7728072..1c008d095 100644 --- a/Software/DB/Tango_log.ldf +++ b/Software/DB/Tango_log.ldf diff --git a/Software/Visual_Studio/PPC/Tango.PPC.BootScreen/App.config b/Software/Visual_Studio/PPC/Tango.PPC.BootScreen/App.config new file mode 100644 index 000000000..731f6de6c --- /dev/null +++ b/Software/Visual_Studio/PPC/Tango.PPC.BootScreen/App.config @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8" ?> +<configuration> + <startup> + <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" /> + </startup> +</configuration>
\ No newline at end of file diff --git a/Software/Visual_Studio/PPC/Tango.PPC.BootScreen/App.xaml b/Software/Visual_Studio/PPC/Tango.PPC.BootScreen/App.xaml new file mode 100644 index 000000000..abb909e5f --- /dev/null +++ b/Software/Visual_Studio/PPC/Tango.PPC.BootScreen/App.xaml @@ -0,0 +1,9 @@ +<Application x:Class="Tango.PPC.BootScreen.App" + xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" + xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" + xmlns:local="clr-namespace:Tango.PPC.BootScreen" + StartupUri="MainWindow.xaml"> + <Application.Resources> + + </Application.Resources> +</Application> diff --git a/Software/Visual_Studio/PPC/Tango.PPC.BootScreen/App.xaml.cs b/Software/Visual_Studio/PPC/Tango.PPC.BootScreen/App.xaml.cs new file mode 100644 index 000000000..ea5b5008d --- /dev/null +++ b/Software/Visual_Studio/PPC/Tango.PPC.BootScreen/App.xaml.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; +using System.Configuration; +using System.Data; +using System.Linq; +using System.Threading.Tasks; +using System.Windows; + +namespace Tango.PPC.BootScreen +{ + /// <summary> + /// Interaction logic for App.xaml + /// </summary> + public partial class App : Application + { + } +} diff --git a/Software/Visual_Studio/PPC/Tango.PPC.BootScreen/MainWindow.xaml b/Software/Visual_Studio/PPC/Tango.PPC.BootScreen/MainWindow.xaml new file mode 100644 index 000000000..a199d69c5 --- /dev/null +++ b/Software/Visual_Studio/PPC/Tango.PPC.BootScreen/MainWindow.xaml @@ -0,0 +1,17 @@ +<Window x:Class="Tango.PPC.BootScreen.MainWindow" + xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" + xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" + xmlns:d="http://schemas.microsoft.com/expression/blend/2008" + xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" + xmlns:local="clr-namespace:Tango.PPC.BootScreen" + mc:Ignorable="d" + Title="MainWindow" Height="1280" Width="800" Foreground="Gainsboro" ShowInTaskbar="False" WindowStyle="None" ResizeMode="CanResize" WindowStartupLocation="CenterScreen" WindowState="Maximized" Background="Black"> + <Grid> + <StackPanel Margin="40" VerticalAlignment="Center"> + <Image Source="/machine-trans.png" Height="300" RenderOptions.BitmapScalingMode="Fant" /> + <TextBlock HorizontalAlignment="Center" FontSize="25" Margin="0 40 0 0">Configuring operation system settings, please wait...</TextBlock> + </StackPanel> + + <ProgressBar VerticalAlignment="Bottom" IsIndeterminate="True" Height="15" Foreground="Gainsboro" Background="#383838" BorderThickness="0" /> + </Grid> +</Window> diff --git a/Software/Visual_Studio/PPC/Tango.PPC.BootScreen/MainWindow.xaml.cs b/Software/Visual_Studio/PPC/Tango.PPC.BootScreen/MainWindow.xaml.cs new file mode 100644 index 000000000..497a59246 --- /dev/null +++ b/Software/Visual_Studio/PPC/Tango.PPC.BootScreen/MainWindow.xaml.cs @@ -0,0 +1,28 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows; +using System.Windows.Controls; +using System.Windows.Data; +using System.Windows.Documents; +using System.Windows.Input; +using System.Windows.Media; +using System.Windows.Media.Imaging; +using System.Windows.Navigation; +using System.Windows.Shapes; + +namespace Tango.PPC.BootScreen +{ + /// <summary> + /// Interaction logic for MainWindow.xaml + /// </summary> + public partial class MainWindow : Window + { + public MainWindow() + { + InitializeComponent(); + } + } +} diff --git a/Software/Visual_Studio/PPC/Tango.PPC.BootScreen/Properties/AssemblyInfo.cs b/Software/Visual_Studio/PPC/Tango.PPC.BootScreen/Properties/AssemblyInfo.cs new file mode 100644 index 000000000..e51c300e8 --- /dev/null +++ b/Software/Visual_Studio/PPC/Tango.PPC.BootScreen/Properties/AssemblyInfo.cs @@ -0,0 +1,11 @@ +using System.Reflection; +using System.Resources; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using System.Windows; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("Tango PPC Boot Screen")] +[assembly: AssemblyVersion("2.0.10.1608")] diff --git a/Software/Visual_Studio/PPC/Tango.PPC.BootScreen/Properties/Resources.Designer.cs b/Software/Visual_Studio/PPC/Tango.PPC.BootScreen/Properties/Resources.Designer.cs new file mode 100644 index 000000000..8cdaa4ef6 --- /dev/null +++ b/Software/Visual_Studio/PPC/Tango.PPC.BootScreen/Properties/Resources.Designer.cs @@ -0,0 +1,71 @@ +//------------------------------------------------------------------------------ +// <auto-generated> +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// </auto-generated> +//------------------------------------------------------------------------------ + +namespace Tango.PPC.BootScreen.Properties +{ + + + /// <summary> + /// A strongly-typed resource class, for looking up localized strings, etc. + /// </summary> + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class Resources + { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Resources() + { + } + + /// <summary> + /// Returns the cached ResourceManager instance used by this class. + /// </summary> + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager + { + get + { + if ((resourceMan == null)) + { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Tango.PPC.BootScreen.Properties.Resources", typeof(Resources).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// <summary> + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// </summary> + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Globalization.CultureInfo Culture + { + get + { + return resourceCulture; + } + set + { + resourceCulture = value; + } + } + } +} diff --git a/Software/Visual_Studio/PPC/Tango.PPC.BootScreen/Properties/Resources.resx b/Software/Visual_Studio/PPC/Tango.PPC.BootScreen/Properties/Resources.resx new file mode 100644 index 000000000..af7dbebba --- /dev/null +++ b/Software/Visual_Studio/PPC/Tango.PPC.BootScreen/Properties/Resources.resx @@ -0,0 +1,117 @@ +<?xml version="1.0" encoding="utf-8"?> +<root> + <!-- + Microsoft ResX Schema + + Version 2.0 + + The primary goals of this format is to allow a simple XML format + that is mostly human readable. The generation and parsing of the + various data types are done through the TypeConverter classes + associated with the data types. + + Example: + + ... ado.net/XML headers & schema ... + <resheader name="resmimetype">text/microsoft-resx</resheader> + <resheader name="version">2.0</resheader> + <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> + <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> + <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> + <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> + <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> + <value>[base64 mime encoded serialized .NET Framework object]</value> + </data> + <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> + <comment>This is a comment</comment> + </data> + + There are any number of "resheader" rows that contain simple + name/value pairs. + + Each data row contains a name, and value. The row also contains a + type or mimetype. Type corresponds to a .NET class that support + text/value conversion through the TypeConverter architecture. + Classes that don't support this are serialized and stored with the + mimetype set. + + The mimetype is used for serialized objects, and tells the + ResXResourceReader how to depersist the object. This is currently not + extensible. For a given mimetype the value must be set accordingly: + + Note - application/x-microsoft.net.object.binary.base64 is the format + that the ResXResourceWriter will generate, however the reader can + read any of the formats listed below. + + mimetype: application/x-microsoft.net.object.binary.base64 + value : The object must be serialized with + : System.Serialization.Formatters.Binary.BinaryFormatter + : and then encoded with base64 encoding. + + mimetype: application/x-microsoft.net.object.soap.base64 + value : The object must be serialized with + : System.Runtime.Serialization.Formatters.Soap.SoapFormatter + : and then encoded with base64 encoding. + + mimetype: application/x-microsoft.net.object.bytearray.base64 + value : The object must be serialized into a byte array + : using a System.ComponentModel.TypeConverter + : and then encoded with base64 encoding. + --> + <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> + <xsd:element name="root" msdata:IsDataSet="true"> + <xsd:complexType> + <xsd:choice maxOccurs="unbounded"> + <xsd:element name="metadata"> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="value" type="xsd:string" minOccurs="0" /> + </xsd:sequence> + <xsd:attribute name="name" type="xsd:string" /> + <xsd:attribute name="type" type="xsd:string" /> + <xsd:attribute name="mimetype" type="xsd:string" /> + </xsd:complexType> + </xsd:element> + <xsd:element name="assembly"> + <xsd:complexType> + <xsd:attribute name="alias" type="xsd:string" /> + <xsd:attribute name="name" type="xsd:string" /> + </xsd:complexType> + </xsd:element> + <xsd:element name="data"> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> + <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> + </xsd:sequence> + <xsd:attribute name="name" type="xsd:string" msdata:Ordinal="1" /> + <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> + <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> + </xsd:complexType> + </xsd:element> + <xsd:element name="resheader"> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> + </xsd:sequence> + <xsd:attribute name="name" type="xsd:string" use="required" /> + </xsd:complexType> + </xsd:element> + </xsd:choice> + </xsd:complexType> + </xsd:element> + </xsd:schema> + <resheader name="resmimetype"> + <value>text/microsoft-resx</value> + </resheader> + <resheader name="version"> + <value>2.0</value> + </resheader> + <resheader name="reader"> + <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> + </resheader> + <resheader name="writer"> + <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> + </resheader> +</root>
\ No newline at end of file diff --git a/Software/Visual_Studio/PPC/Tango.PPC.BootScreen/Properties/Settings.Designer.cs b/Software/Visual_Studio/PPC/Tango.PPC.BootScreen/Properties/Settings.Designer.cs new file mode 100644 index 000000000..5fb3f8ada --- /dev/null +++ b/Software/Visual_Studio/PPC/Tango.PPC.BootScreen/Properties/Settings.Designer.cs @@ -0,0 +1,30 @@ +//------------------------------------------------------------------------------ +// <auto-generated> +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// </auto-generated> +//------------------------------------------------------------------------------ + +namespace Tango.PPC.BootScreen.Properties +{ + + + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")] + internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase + { + + private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); + + public static Settings Default + { + get + { + return defaultInstance; + } + } + } +} diff --git a/Software/Visual_Studio/PPC/Tango.PPC.BootScreen/Properties/Settings.settings b/Software/Visual_Studio/PPC/Tango.PPC.BootScreen/Properties/Settings.settings new file mode 100644 index 000000000..033d7a5e9 --- /dev/null +++ b/Software/Visual_Studio/PPC/Tango.PPC.BootScreen/Properties/Settings.settings @@ -0,0 +1,7 @@ +<?xml version='1.0' encoding='utf-8'?> +<SettingsFile xmlns="uri:settings" CurrentProfile="(Default)"> + <Profiles> + <Profile Name="(Default)" /> + </Profiles> + <Settings /> +</SettingsFile>
\ No newline at end of file diff --git a/Software/Visual_Studio/PPC/Tango.PPC.BootScreen/Tango.PPC.BootScreen.csproj b/Software/Visual_Studio/PPC/Tango.PPC.BootScreen/Tango.PPC.BootScreen.csproj new file mode 100644 index 000000000..957cedf5f --- /dev/null +++ b/Software/Visual_Studio/PPC/Tango.PPC.BootScreen/Tango.PPC.BootScreen.csproj @@ -0,0 +1,104 @@ +<?xml version="1.0" encoding="utf-8"?> +<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" /> + <PropertyGroup> + <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> + <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> + <ProjectGuid>{7E5E4BED-538C-4566-A005-DCC070AF8715}</ProjectGuid> + <OutputType>WinExe</OutputType> + <RootNamespace>Tango.PPC.BootScreen</RootNamespace> + <AssemblyName>Tango.PPC.BootScreen</AssemblyName> + <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion> + <FileAlignment>512</FileAlignment> + <ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids> + <WarningLevel>4</WarningLevel> + <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects> + <Deterministic>true</Deterministic> + </PropertyGroup> + <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> + <PlatformTarget>AnyCPU</PlatformTarget> + <DebugSymbols>true</DebugSymbols> + <DebugType>full</DebugType> + <Optimize>false</Optimize> + <OutputPath>..\..\Build\PPC\Debug\</OutputPath> + <DefineConstants>DEBUG;TRACE</DefineConstants> + <ErrorReport>prompt</ErrorReport> + <WarningLevel>4</WarningLevel> + </PropertyGroup> + <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> + <PlatformTarget>AnyCPU</PlatformTarget> + <DebugType>pdbonly</DebugType> + <Optimize>true</Optimize> + <OutputPath>..\..\Build\PPC\Release\</OutputPath> + <DefineConstants>TRACE</DefineConstants> + <ErrorReport>prompt</ErrorReport> + <WarningLevel>4</WarningLevel> + </PropertyGroup> + <ItemGroup> + <Reference Include="System" /> + <Reference Include="System.Data" /> + <Reference Include="System.Xml" /> + <Reference Include="Microsoft.CSharp" /> + <Reference Include="System.Core" /> + <Reference Include="System.Xml.Linq" /> + <Reference Include="System.Data.DataSetExtensions" /> + <Reference Include="System.Net.Http" /> + <Reference Include="System.Xaml"> + <RequiredTargetFramework>4.0</RequiredTargetFramework> + </Reference> + <Reference Include="WindowsBase" /> + <Reference Include="PresentationCore" /> + <Reference Include="PresentationFramework" /> + </ItemGroup> + <ItemGroup> + <ApplicationDefinition Include="App.xaml"> + <Generator>MSBuild:Compile</Generator> + <SubType>Designer</SubType> + </ApplicationDefinition> + <Page Include="MainWindow.xaml"> + <Generator>MSBuild:Compile</Generator> + <SubType>Designer</SubType> + </Page> + <Compile Include="..\..\Versioning\GlobalVersionInfo.cs"> + <Link>GlobalVersionInfo.cs</Link> + </Compile> + <Compile Include="App.xaml.cs"> + <DependentUpon>App.xaml</DependentUpon> + <SubType>Code</SubType> + </Compile> + <Compile Include="MainWindow.xaml.cs"> + <DependentUpon>MainWindow.xaml</DependentUpon> + <SubType>Code</SubType> + </Compile> + </ItemGroup> + <ItemGroup> + <Compile Include="Properties\AssemblyInfo.cs"> + <SubType>Code</SubType> + </Compile> + <Compile Include="Properties\Resources.Designer.cs"> + <AutoGen>True</AutoGen> + <DesignTime>True</DesignTime> + <DependentUpon>Resources.resx</DependentUpon> + </Compile> + <Compile Include="Properties\Settings.Designer.cs"> + <AutoGen>True</AutoGen> + <DependentUpon>Settings.settings</DependentUpon> + <DesignTimeSharedInput>True</DesignTimeSharedInput> + </Compile> + <EmbeddedResource Include="Properties\Resources.resx"> + <Generator>ResXFileCodeGenerator</Generator> + <LastGenOutput>Resources.Designer.cs</LastGenOutput> + </EmbeddedResource> + <None Include="Properties\Settings.settings"> + <Generator>SettingsSingleFileGenerator</Generator> + <LastGenOutput>Settings.Designer.cs</LastGenOutput> + </None> + </ItemGroup> + <ItemGroup> + <None Include="App.config" /> + </ItemGroup> + <ItemGroup> + <Resource Include="machine-trans.png" /> + </ItemGroup> + <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> +</Project>
\ No newline at end of file diff --git a/Software/Visual_Studio/PPC/Tango.PPC.BootScreen/machine-trans.png b/Software/Visual_Studio/PPC/Tango.PPC.BootScreen/machine-trans.png Binary files differnew file mode 100644 index 000000000..a7cf65852 --- /dev/null +++ b/Software/Visual_Studio/PPC/Tango.PPC.BootScreen/machine-trans.png diff --git a/Software/Visual_Studio/Tango.sln b/Software/Visual_Studio/Tango.sln index ed2c4676e..a190fd04a 100644 --- a/Software/Visual_Studio/Tango.sln +++ b/Software/Visual_Studio/Tango.sln @@ -242,6 +242,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tango.MachineStudio.Storage EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tango.FirmwarePackageGenerator", "Utilities\Tango.FirmwarePackageGenerator\Tango.FirmwarePackageGenerator.csproj", "{43135FB9-41DB-4F87-9771-CF2C762027C0}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tango.PPC.BootScreen", "PPC\Tango.PPC.BootScreen\Tango.PPC.BootScreen.csproj", "{7E5E4BED-538C-4566-A005-DCC070AF8715}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution AppVeyor|Any CPU = AppVeyor|Any CPU @@ -4325,6 +4327,46 @@ Global {43135FB9-41DB-4F87-9771-CF2C762027C0}.Release|x64.Build.0 = Release|Any CPU {43135FB9-41DB-4F87-9771-CF2C762027C0}.Release|x86.ActiveCfg = Release|Any CPU {43135FB9-41DB-4F87-9771-CF2C762027C0}.Release|x86.Build.0 = Release|Any CPU + {7E5E4BED-538C-4566-A005-DCC070AF8715}.AppVeyor|Any CPU.ActiveCfg = Release|Any CPU + {7E5E4BED-538C-4566-A005-DCC070AF8715}.AppVeyor|Any CPU.Build.0 = Release|Any CPU + {7E5E4BED-538C-4566-A005-DCC070AF8715}.AppVeyor|ARM.ActiveCfg = Release|Any CPU + {7E5E4BED-538C-4566-A005-DCC070AF8715}.AppVeyor|ARM.Build.0 = Release|Any CPU + {7E5E4BED-538C-4566-A005-DCC070AF8715}.AppVeyor|ARM64.ActiveCfg = Release|Any CPU + {7E5E4BED-538C-4566-A005-DCC070AF8715}.AppVeyor|ARM64.Build.0 = Release|Any CPU + {7E5E4BED-538C-4566-A005-DCC070AF8715}.AppVeyor|x64.ActiveCfg = Release|Any CPU + {7E5E4BED-538C-4566-A005-DCC070AF8715}.AppVeyor|x64.Build.0 = Release|Any CPU + {7E5E4BED-538C-4566-A005-DCC070AF8715}.AppVeyor|x86.ActiveCfg = Release|Any CPU + {7E5E4BED-538C-4566-A005-DCC070AF8715}.AppVeyor|x86.Build.0 = Release|Any CPU + {7E5E4BED-538C-4566-A005-DCC070AF8715}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {7E5E4BED-538C-4566-A005-DCC070AF8715}.Debug|Any CPU.Build.0 = Debug|Any CPU + {7E5E4BED-538C-4566-A005-DCC070AF8715}.Debug|ARM.ActiveCfg = Debug|Any CPU + {7E5E4BED-538C-4566-A005-DCC070AF8715}.Debug|ARM.Build.0 = Debug|Any CPU + {7E5E4BED-538C-4566-A005-DCC070AF8715}.Debug|ARM64.ActiveCfg = Debug|Any CPU + {7E5E4BED-538C-4566-A005-DCC070AF8715}.Debug|ARM64.Build.0 = Debug|Any CPU + {7E5E4BED-538C-4566-A005-DCC070AF8715}.Debug|x64.ActiveCfg = Debug|Any CPU + {7E5E4BED-538C-4566-A005-DCC070AF8715}.Debug|x64.Build.0 = Debug|Any CPU + {7E5E4BED-538C-4566-A005-DCC070AF8715}.Debug|x86.ActiveCfg = Debug|Any CPU + {7E5E4BED-538C-4566-A005-DCC070AF8715}.Debug|x86.Build.0 = Debug|Any CPU + {7E5E4BED-538C-4566-A005-DCC070AF8715}.DefaultBuild|Any CPU.ActiveCfg = Debug|Any CPU + {7E5E4BED-538C-4566-A005-DCC070AF8715}.DefaultBuild|Any CPU.Build.0 = Debug|Any CPU + {7E5E4BED-538C-4566-A005-DCC070AF8715}.DefaultBuild|ARM.ActiveCfg = Debug|Any CPU + {7E5E4BED-538C-4566-A005-DCC070AF8715}.DefaultBuild|ARM.Build.0 = Debug|Any CPU + {7E5E4BED-538C-4566-A005-DCC070AF8715}.DefaultBuild|ARM64.ActiveCfg = Debug|Any CPU + {7E5E4BED-538C-4566-A005-DCC070AF8715}.DefaultBuild|ARM64.Build.0 = Debug|Any CPU + {7E5E4BED-538C-4566-A005-DCC070AF8715}.DefaultBuild|x64.ActiveCfg = Debug|Any CPU + {7E5E4BED-538C-4566-A005-DCC070AF8715}.DefaultBuild|x64.Build.0 = Debug|Any CPU + {7E5E4BED-538C-4566-A005-DCC070AF8715}.DefaultBuild|x86.ActiveCfg = Debug|Any CPU + {7E5E4BED-538C-4566-A005-DCC070AF8715}.DefaultBuild|x86.Build.0 = Debug|Any CPU + {7E5E4BED-538C-4566-A005-DCC070AF8715}.Release|Any CPU.ActiveCfg = Release|Any CPU + {7E5E4BED-538C-4566-A005-DCC070AF8715}.Release|Any CPU.Build.0 = Release|Any CPU + {7E5E4BED-538C-4566-A005-DCC070AF8715}.Release|ARM.ActiveCfg = Release|Any CPU + {7E5E4BED-538C-4566-A005-DCC070AF8715}.Release|ARM.Build.0 = Release|Any CPU + {7E5E4BED-538C-4566-A005-DCC070AF8715}.Release|ARM64.ActiveCfg = Release|Any CPU + {7E5E4BED-538C-4566-A005-DCC070AF8715}.Release|ARM64.Build.0 = Release|Any CPU + {7E5E4BED-538C-4566-A005-DCC070AF8715}.Release|x64.ActiveCfg = Release|Any CPU + {7E5E4BED-538C-4566-A005-DCC070AF8715}.Release|x64.Build.0 = Release|Any CPU + {7E5E4BED-538C-4566-A005-DCC070AF8715}.Release|x86.ActiveCfg = Release|Any CPU + {7E5E4BED-538C-4566-A005-DCC070AF8715}.Release|x86.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE @@ -4400,14 +4442,15 @@ Global {A8077B3E-8DD6-4572-8EC4-A27BDC91B70A} = {0048447D-1D94-4E60-9DAD-7349C777CB4E} {5991F6B5-EA4E-41E9-A4F6-7D3A50010FD6} = {B2AF4F3F-2828-47C3-8F3E-A0EA0BD66FF8} {43135FB9-41DB-4F87-9771-CF2C762027C0} = {5F6BBAA8-EAD0-4B18-97E5-55B4F56DD760} + {7E5E4BED-538C-4566-A005-DCC070AF8715} = {C81ED1A3-D18C-4D80-A8F5-061994A14A60} EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution - BuildVersion_UseGlobalSettings = False - BuildVersion_AssemblyInfoFilename = Properties\AssemblyInfo.cs - BuildVersion_StartDate = 2000/1/1 - BuildVersion_UpdateFileVersion = False - BuildVersion_UpdateAssemblyVersion = True - BuildVersion_BuildVersioningStyle = None.None.Increment.DeltaBaseYearDayOfYear SolutionGuid = {7986F7F4-A86A-4994-B1B6-0988D7F057B6} + BuildVersion_BuildVersioningStyle = None.None.Increment.DeltaBaseYearDayOfYear + BuildVersion_UpdateAssemblyVersion = True + BuildVersion_UpdateFileVersion = False + BuildVersion_StartDate = 2000/1/1 + BuildVersion_AssemblyInfoFilename = Properties\AssemblyInfo.cs + BuildVersion_UseGlobalSettings = False EndGlobalSection EndGlobal |
