revert a0e77762f506365f8a7a1727b6e51a408829cab9

revert Working 4.8 Framework Version
This commit is contained in:
Ferdinand V 2024-11-20 00:34:35 -05:00
parent 599ad69eef
commit 6dd7f5cf5f
5 changed files with 290 additions and 363 deletions

View File

@ -1,13 +1,12 @@
<Window x:Class="WindowsUpgradeService.MainWindow" <Window x:Class="WindowsUpgradeService.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:WindowsUpgradeService" xmlns:local="clr-namespace:WindowsUpgradeService"
mc:Ignorable="d" mc:Ignorable="d"
Title="Windows Upgrade Service" Height="250" Width="500" Loaded="Window_Loaded"> Title="MainWindow" Height="450" Width="800">
<Grid> <Grid>
<Label x:Name="StatusLabel" Content="Label" HorizontalAlignment="Center" Margin="0,34,0,0" VerticalAlignment="Top" Loaded="StatusLabel_Loaded"/>
</Grid>
</Grid> </Window>
</Window>

View File

@ -1,110 +1,85 @@
using DiscUtils.Udf; using DiscUtils.Udf;
using Microsoft.Toolkit.Uwp.Notifications; using System;
using System; using System.Collections.Generic;
using System.Collections.Generic; using System.Diagnostics;
using System.Diagnostics; using System.IO;
using System.IO; using System.Linq;
using System.Linq; using System.Text;
using System.Text; using System.Threading.Tasks;
using System.Threading.Tasks; using System.Windows;
using System.Windows; using System.Windows.Controls;
using System.Windows.Controls; using System.Windows.Data;
using System.Windows.Data; using System.Windows.Documents;
using System.Windows.Documents; using System.Windows.Input;
using System.Windows.Input; using System.Windows.Media;
using System.Windows.Media; using System.Windows.Media.Imaging;
using System.Windows.Media.Imaging; using System.Windows.Navigation;
using System.Windows.Navigation; using System.Windows.Shapes;
using System.Windows.Shapes;
namespace WindowsUpgradeService
namespace WindowsUpgradeService {
{ /// <summary>
/// <summary> /// Interaction logic for MainWindow.xaml
/// Interaction logic for MainWindow.xaml /// </summary>
/// </summary> public partial class MainWindow : Window
public partial class MainWindow : Window {
{ public MainWindow()
public MainWindow() {
{ ExtractISO();
//InitializeComponent(); SetupWindows();
ExtractISO(); InitializeComponent();
SetupWindows(); }
} static string OutPutWork = $"{Environment.GetEnvironmentVariable("SystemDrive")}\\WindowsSetup";
static string OutPutWork = $"{Environment.GetEnvironmentVariable("SystemDrive")}\\WindowsSetup"; private void ExtractISO()
private void ExtractISO() {
{ using (Stream isoStream = File.Open($"{Directory.GetCurrentDirectory()}\\Windows_24H2.iso", FileMode.Open))
using (Stream isoStream = File.Open($"{Directory.GetCurrentDirectory()}\\Windows_24H2.iso", FileMode.Open)) {
{ UdfReader udfReader = new UdfReader(isoStream);
UdfReader udfReader = new UdfReader(isoStream); var DIRcd = udfReader.GetDirectories("\\", "*", SearchOption.AllDirectories);
var DIRcd = udfReader.GetDirectories("\\", "*", SearchOption.AllDirectories); var FILEScd = udfReader.GetFiles("\\", "*", SearchOption.AllDirectories);
var FILEScd = udfReader.GetFiles("\\", "*", SearchOption.AllDirectories);
if (Directory.Exists(OutPutWork))
if (Directory.Exists(OutPutWork)) {
{ Directory.Delete(OutPutWork,true);
Directory.Delete(OutPutWork,true); }
}
Directory.CreateDirectory(OutPutWork);
Directory.CreateDirectory(OutPutWork);
foreach (var dir in DIRcd) {
foreach (var dir in DIRcd) { Directory.CreateDirectory($"{OutPutWork}{dir}");
Directory.CreateDirectory($"{OutPutWork}{dir}"); }
}
foreach (var files in FILEScd) {
foreach (var files in FILEScd) { Stream destOutput = File.OpenWrite($"{OutPutWork}{files}");
Stream destOutput = File.OpenWrite($"{OutPutWork}{files}"); Stream fileStream = udfReader.OpenFile(files,FileMode.Open);
Stream fileStream = udfReader.OpenFile(files,FileMode.Open); fileStream.CopyTo(destOutput);
fileStream.CopyTo(destOutput); }
} }
} }
}
private void SetupWindows()
private void SetupWindows() {
{ var ProcStartInfo = new ProcessStartInfo()
var ProcStartInfo = new ProcessStartInfo() {
{ FileName = $"{OutPutWork}\\setup.exe",
FileName = $"{OutPutWork}\\setup.exe", Arguments = "/auto upgrade /quiet /noreboot",
Arguments = "/auto upgrade /quiet /noreboot", UseShellExecute = true,
UseShellExecute = true, CreateNoWindow = true,
CreateNoWindow = true,
};
}; var ProcStart = new Process()
var ProcStart = new Process() {
{ StartInfo = ProcStartInfo,
StartInfo = ProcStartInfo, };
}; ProcStart.Start();
NotifyMe("The Upgrade is in Progress.", "Please do not shutdown or unplug your PC."); ProcStart.WaitForExit();
Window1 window1 = new Window1(); if (ProcStart.ExitCode != 0) {
window1.StatusLabel.Content = "The Upgrade is in Progress."; MessageBox.Show("Failed");
window1.Show(); } else {
ProcStart.Start(); MessageBox.Show("Passed");
ProcStart.WaitForExit();
if (ProcStart.ExitCode != 0) { }
NotifyMe("The Upgrade Failed.", "Please try to install again later.");
window1.StatusLabel.Content = "The Upgrade Failed."; }
} }
else { }
NotifyMe("Welcome to Windows 11.", "Please restart your machine and allow the setup to complete.");
window1.StatusLabel.Content = "Please restart your machine and allow the setup to complete.";
}
}
public void NotifyMe(string Title, string Message)
{
new ToastContentBuilder()
.AddArgument("action", "viewConversation")
.AddArgument("conversationId", 6969)
.AddText(Title)
.AddText(Message)
.Show();
}
private void StatusLabel_Loaded(object sender, RoutedEventArgs e)
{
}
private void Window_Loaded(object sender, RoutedEventArgs e)
{
Visibility = Visibility.Collapsed;
}
}
}

View File

@ -1,13 +0,0 @@
<Window x:Class="WindowsUpgradeService.Window1"
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:WindowsUpgradeService"
mc:Ignorable="d"
Title="Windows Upgrade Service" Height="250" Width="500" Loaded="Window_Loaded" FontSize="20" Topmost="True" ResizeMode="NoResize" Closing="Window_Closing">
<Grid>
<Label x:Name="StatusLabel" Content="Label" HorizontalAlignment="Center" Margin="0,34,0,0" VerticalAlignment="Top"/>
</Grid>
</Window>

View File

@ -1,40 +0,0 @@
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.Shapes;
namespace WindowsUpgradeService
{
/// <summary>
/// Interaction logic for Window1.xaml
/// </summary>
public partial class Window1 : Window
{
public Window1()
{
InitializeComponent();
}
private void Window_Loaded(object sender, RoutedEventArgs e)
{
var desktopWorkingArea = System.Windows.SystemParameters.WorkArea;
this.Left = desktopWorkingArea.Right - this.Width;
this.Top = desktopWorkingArea.Bottom - this.Height;
}
private void Window_Closing(object sender, System.ComponentModel.CancelEventArgs e)
{
Environment.Exit(0);
}
}
}

View File

@ -1,188 +1,194 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <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')" /> <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup> <PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{70C42B35-5B42-4495-92BE-29A72C9C61FE}</ProjectGuid> <ProjectGuid>{70C42B35-5B42-4495-92BE-29A72C9C61FE}</ProjectGuid>
<OutputType>WinExe</OutputType> <OutputType>WinExe</OutputType>
<RootNamespace>WindowsUpgradeService</RootNamespace> <RootNamespace>WindowsUpgradeService</RootNamespace>
<AssemblyName>WindowsUpgradeService</AssemblyName> <AssemblyName>WindowsUpgradeService</AssemblyName>
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion> <TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment> <FileAlignment>512</FileAlignment>
<ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids> <ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<WarningLevel>4</WarningLevel> <WarningLevel>4</WarningLevel>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects> <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<Deterministic>true</Deterministic> <Deterministic>true</Deterministic>
<PublishUrl>publish\</PublishUrl> <PublishUrl>publish\</PublishUrl>
<Install>true</Install> <Install>true</Install>
<InstallFrom>Disk</InstallFrom> <InstallFrom>Disk</InstallFrom>
<UpdateEnabled>false</UpdateEnabled> <UpdateEnabled>false</UpdateEnabled>
<UpdateMode>Foreground</UpdateMode> <UpdateMode>Foreground</UpdateMode>
<UpdateInterval>7</UpdateInterval> <UpdateInterval>7</UpdateInterval>
<UpdateIntervalUnits>Days</UpdateIntervalUnits> <UpdateIntervalUnits>Days</UpdateIntervalUnits>
<UpdatePeriodically>false</UpdatePeriodically> <UpdatePeriodically>false</UpdatePeriodically>
<UpdateRequired>false</UpdateRequired> <UpdateRequired>false</UpdateRequired>
<MapFileExtensions>true</MapFileExtensions> <MapFileExtensions>true</MapFileExtensions>
<ApplicationRevision>0</ApplicationRevision> <ApplicationRevision>0</ApplicationRevision>
<ApplicationVersion>1.0.0.%2a</ApplicationVersion> <ApplicationVersion>1.0.0.%2a</ApplicationVersion>
<IsWebBootstrapper>false</IsWebBootstrapper> <IsWebBootstrapper>false</IsWebBootstrapper>
<UseApplicationTrust>false</UseApplicationTrust> <UseApplicationTrust>false</UseApplicationTrust>
<BootstrapperEnabled>true</BootstrapperEnabled> <BootstrapperEnabled>true</BootstrapperEnabled>
<NuGetPackageImportStamp> </PropertyGroup>
</NuGetPackageImportStamp> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
</PropertyGroup> <PlatformTarget>x64</PlatformTarget>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>true</DebugSymbols>
<PlatformTarget>x64</PlatformTarget> <DebugType>embedded</DebugType>
<DebugSymbols>true</DebugSymbols> <Optimize>false</Optimize>
<DebugType>embedded</DebugType> <OutputPath>bin\Debug\</OutputPath>
<Optimize>false</Optimize> <DefineConstants>DEBUG;TRACE</DefineConstants>
<OutputPath>bin\Debug\</OutputPath> <ErrorReport>prompt</ErrorReport>
<DefineConstants>DEBUG;TRACE</DefineConstants> <WarningLevel>4</WarningLevel>
<ErrorReport>prompt</ErrorReport> <Prefer32Bit>false</Prefer32Bit>
<WarningLevel>4</WarningLevel> </PropertyGroup>
<Prefer32Bit>false</Prefer32Bit> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
</PropertyGroup> <PlatformTarget>AnyCPU</PlatformTarget>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> <DebugType>pdbonly</DebugType>
<PlatformTarget>AnyCPU</PlatformTarget> <Optimize>true</Optimize>
<DebugType>pdbonly</DebugType> <OutputPath>bin\Release\</OutputPath>
<Optimize>true</Optimize> <DefineConstants>TRACE</DefineConstants>
<OutputPath>bin\Release\</OutputPath> <ErrorReport>prompt</ErrorReport>
<DefineConstants>TRACE</DefineConstants> <WarningLevel>4</WarningLevel>
<ErrorReport>prompt</ErrorReport> </PropertyGroup>
<WarningLevel>4</WarningLevel> <PropertyGroup>
</PropertyGroup> <ApplicationManifest>app.manifest</ApplicationManifest>
<PropertyGroup> </PropertyGroup>
<ApplicationManifest>app.manifest</ApplicationManifest> <ItemGroup>
</PropertyGroup> <Reference Include="DiscUtils.Core, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<ItemGroup> <HintPath>..\packages\LTRData.DiscUtils.Core.1.0.48\lib\net48\DiscUtils.Core.dll</HintPath>
<Reference Include="DiscUtils.Core, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL"> </Reference>
<HintPath>..\packages\LTRData.DiscUtils.Core.1.0.48\lib\net48\DiscUtils.Core.dll</HintPath> <Reference Include="DiscUtils.Iso9660, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
</Reference> <HintPath>..\packages\LTRData.DiscUtils.Iso9660.1.0.48\lib\net48\DiscUtils.Iso9660.dll</HintPath>
<Reference Include="DiscUtils.Iso9660, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL"> </Reference>
<HintPath>..\packages\LTRData.DiscUtils.Iso9660.1.0.48\lib\net48\DiscUtils.Iso9660.dll</HintPath> <Reference Include="DiscUtils.Streams, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
</Reference> <HintPath>..\packages\LTRData.DiscUtils.Streams.1.0.48\lib\net48\DiscUtils.Streams.dll</HintPath>
<Reference Include="DiscUtils.Streams, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL"> </Reference>
<HintPath>..\packages\LTRData.DiscUtils.Streams.1.0.48\lib\net48\DiscUtils.Streams.dll</HintPath> <Reference Include="DiscUtils.Udf, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
</Reference> <HintPath>..\packages\LTRData.DiscUtils.Udf.1.0.48\lib\net48\DiscUtils.Udf.dll</HintPath>
<Reference Include="DiscUtils.Udf, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL"> </Reference>
<HintPath>..\packages\LTRData.DiscUtils.Udf.1.0.48\lib\net48\DiscUtils.Udf.dll</HintPath> <Reference Include="LTRData.Extensions, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
</Reference> <HintPath>..\packages\LTRData.Extensions.1.0.13\lib\net48\LTRData.Extensions.dll</HintPath>
<Reference Include="LTRData.Extensions, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL"> </Reference>
<HintPath>..\packages\LTRData.Extensions.1.0.13\lib\net48\LTRData.Extensions.dll</HintPath> <Reference Include="Microsoft.Bcl.HashCode, Version=6.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
</Reference> <HintPath>..\packages\Microsoft.Bcl.HashCode.6.0.0\lib\net462\Microsoft.Bcl.HashCode.dll</HintPath>
<Reference Include="Microsoft.Bcl.HashCode, Version=6.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL"> </Reference>
<HintPath>..\packages\Microsoft.Bcl.HashCode.6.0.0\lib\net462\Microsoft.Bcl.HashCode.dll</HintPath> <Reference Include="System" />
</Reference> <Reference Include="System.Buffers, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
<Reference Include="System" /> <HintPath>..\packages\System.Buffers.4.5.1\lib\net461\System.Buffers.dll</HintPath>
<Reference Include="System.Buffers, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL"> </Reference>
<HintPath>..\packages\System.Buffers.4.5.1\lib\net461\System.Buffers.dll</HintPath> <Reference Include="System.ComponentModel.Composition" />
</Reference> <Reference Include="System.Data" />
<Reference Include="System.ComponentModel.Composition" /> <Reference Include="System.IO, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<Reference Include="System.Data" /> <HintPath>..\packages\System.IO.4.3.0\lib\net462\System.IO.dll</HintPath>
<Reference Include="System.Memory, Version=4.0.1.2, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL"> <Private>True</Private>
<HintPath>..\packages\System.Memory.4.5.5\lib\net461\System.Memory.dll</HintPath> <Private>True</Private>
</Reference> </Reference>
<Reference Include="System.Numerics" /> <Reference Include="System.Memory, Version=4.0.1.2, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
<Reference Include="System.Numerics.Vectors, Version=4.1.4.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"> <HintPath>..\packages\System.Memory.4.5.5\lib\net461\System.Memory.dll</HintPath>
<HintPath>..\packages\System.Numerics.Vectors.4.5.0\lib\net46\System.Numerics.Vectors.dll</HintPath> </Reference>
</Reference> <Reference Include="System.Numerics" />
<Reference Include="System.Runtime.CompilerServices.Unsafe, Version=4.0.4.1, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"> <Reference Include="System.Numerics.Vectors, Version=4.1.4.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\System.Runtime.CompilerServices.Unsafe.4.5.3\lib\net461\System.Runtime.CompilerServices.Unsafe.dll</HintPath> <HintPath>..\packages\System.Numerics.Vectors.4.5.0\lib\net46\System.Numerics.Vectors.dll</HintPath>
</Reference> </Reference>
<Reference Include="System.Threading.Tasks.Extensions, Version=4.2.0.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL"> <Reference Include="System.Runtime, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\System.Threading.Tasks.Extensions.4.5.4\lib\net461\System.Threading.Tasks.Extensions.dll</HintPath> <HintPath>..\packages\System.Runtime.4.3.0\lib\net462\System.Runtime.dll</HintPath>
</Reference> <Private>True</Private>
<Reference Include="System.ValueTuple, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL"> <Private>True</Private>
<HintPath>..\packages\System.ValueTuple.4.5.0\lib\net47\System.ValueTuple.dll</HintPath> </Reference>
</Reference> <Reference Include="System.Runtime.CompilerServices.Unsafe, Version=4.0.4.1, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<Reference Include="System.Xml" /> <HintPath>..\packages\System.Runtime.CompilerServices.Unsafe.4.5.3\lib\net461\System.Runtime.CompilerServices.Unsafe.dll</HintPath>
<Reference Include="Microsoft.CSharp" /> </Reference>
<Reference Include="System.Core" /> <Reference Include="System.Security.Cryptography.Algorithms, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<Reference Include="System.Xml.Linq" /> <HintPath>..\packages\System.Security.Cryptography.Algorithms.4.3.1\lib\net463\System.Security.Cryptography.Algorithms.dll</HintPath>
<Reference Include="System.Data.DataSetExtensions" /> <Private>True</Private>
<Reference Include="System.Net.Http" /> <Private>True</Private>
<Reference Include="System.Xaml"> </Reference>
<RequiredTargetFramework>4.0</RequiredTargetFramework> <Reference Include="System.Security.Cryptography.Encoding, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
</Reference> <HintPath>..\packages\System.Security.Cryptography.Encoding.4.3.0\lib\net46\System.Security.Cryptography.Encoding.dll</HintPath>
<Reference Include="WindowsBase" /> <Private>True</Private>
<Reference Include="PresentationCore" /> <Private>True</Private>
<Reference Include="PresentationFramework" /> </Reference>
</ItemGroup> <Reference Include="System.Security.Cryptography.Primitives, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<ItemGroup> <HintPath>..\packages\System.Security.Cryptography.Primitives.4.3.0\lib\net46\System.Security.Cryptography.Primitives.dll</HintPath>
<ApplicationDefinition Include="App.xaml"> <Private>True</Private>
<Generator>MSBuild:Compile</Generator> <Private>True</Private>
<SubType>Designer</SubType> </Reference>
</ApplicationDefinition> <Reference Include="System.Threading.Tasks.Extensions, Version=4.2.0.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
<Compile Include="Window1.xaml.cs"> <HintPath>..\packages\System.Threading.Tasks.Extensions.4.5.4\lib\net461\System.Threading.Tasks.Extensions.dll</HintPath>
<DependentUpon>Window1.xaml</DependentUpon> </Reference>
</Compile> <Reference Include="System.ValueTuple, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
<Page Include="MainWindow.xaml"> <HintPath>..\packages\System.ValueTuple.4.5.0\lib\net47\System.ValueTuple.dll</HintPath>
<Generator>MSBuild:Compile</Generator> </Reference>
<SubType>Designer</SubType> <Reference Include="System.Xml" />
</Page> <Reference Include="Microsoft.CSharp" />
<Compile Include="App.xaml.cs"> <Reference Include="System.Core" />
<DependentUpon>App.xaml</DependentUpon> <Reference Include="System.Xml.Linq" />
<SubType>Code</SubType> <Reference Include="System.Data.DataSetExtensions" />
</Compile> <Reference Include="System.Net.Http" />
<Compile Include="MainWindow.xaml.cs"> <Reference Include="System.Xaml">
<DependentUpon>MainWindow.xaml</DependentUpon> <RequiredTargetFramework>4.0</RequiredTargetFramework>
<SubType>Code</SubType> </Reference>
</Compile> <Reference Include="WindowsBase" />
<Page Include="Window1.xaml"> <Reference Include="PresentationCore" />
<SubType>Designer</SubType> <Reference Include="PresentationFramework" />
<Generator>MSBuild:Compile</Generator> </ItemGroup>
</Page> <ItemGroup>
</ItemGroup> <ApplicationDefinition Include="App.xaml">
<ItemGroup> <Generator>MSBuild:Compile</Generator>
<Compile Include="Properties\AssemblyInfo.cs"> <SubType>Designer</SubType>
<SubType>Code</SubType> </ApplicationDefinition>
</Compile> <Page Include="MainWindow.xaml">
<Compile Include="Properties\Resources.Designer.cs"> <Generator>MSBuild:Compile</Generator>
<AutoGen>True</AutoGen> <SubType>Designer</SubType>
<DesignTime>True</DesignTime> </Page>
<DependentUpon>Resources.resx</DependentUpon> <Compile Include="App.xaml.cs">
</Compile> <DependentUpon>App.xaml</DependentUpon>
<Compile Include="Properties\Settings.Designer.cs"> <SubType>Code</SubType>
<AutoGen>True</AutoGen> </Compile>
<DependentUpon>Settings.settings</DependentUpon> <Compile Include="MainWindow.xaml.cs">
<DesignTimeSharedInput>True</DesignTimeSharedInput> <DependentUpon>MainWindow.xaml</DependentUpon>
</Compile> <SubType>Code</SubType>
<EmbeddedResource Include="Properties\Resources.resx"> </Compile>
<Generator>ResXFileCodeGenerator</Generator> </ItemGroup>
<LastGenOutput>Resources.Designer.cs</LastGenOutput> <ItemGroup>
</EmbeddedResource> <Compile Include="Properties\AssemblyInfo.cs">
<None Include="app.manifest" /> <SubType>Code</SubType>
<None Include="Properties\Settings.settings"> </Compile>
<Generator>SettingsSingleFileGenerator</Generator> <Compile Include="Properties\Resources.Designer.cs">
<LastGenOutput>Settings.Designer.cs</LastGenOutput> <AutoGen>True</AutoGen>
</None> <DesignTime>True</DesignTime>
</ItemGroup> <DependentUpon>Resources.resx</DependentUpon>
<ItemGroup> </Compile>
<None Include="App.config" /> <Compile Include="Properties\Settings.Designer.cs">
</ItemGroup> <AutoGen>True</AutoGen>
<ItemGroup> <DependentUpon>Settings.settings</DependentUpon>
<BootstrapperPackage Include=".NETFramework,Version=v4.8"> <DesignTimeSharedInput>True</DesignTimeSharedInput>
<Visible>False</Visible> </Compile>
<ProductName>Microsoft .NET Framework 4.8 %28x86 and x64%29</ProductName> <EmbeddedResource Include="Properties\Resources.resx">
<Install>true</Install> <Generator>ResXFileCodeGenerator</Generator>
</BootstrapperPackage> <LastGenOutput>Resources.Designer.cs</LastGenOutput>
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1"> </EmbeddedResource>
<Visible>False</Visible> <None Include="app.manifest" />
<ProductName>.NET Framework 3.5 SP1</ProductName> <None Include="packages.config" />
<Install>false</Install> <None Include="Properties\Settings.settings">
</BootstrapperPackage> <Generator>SettingsSingleFileGenerator</Generator>
</ItemGroup> <LastGenOutput>Settings.Designer.cs</LastGenOutput>
<ItemGroup> </None>
<PackageReference Include="LTRData.DiscUtils.Udf"> </ItemGroup>
<Version>1.0.48</Version> <ItemGroup>
</PackageReference> <None Include="App.config" />
<PackageReference Include="LTRData.Extensions"> </ItemGroup>
<Version>1.0.13</Version> <ItemGroup>
</PackageReference> <BootstrapperPackage Include=".NETFramework,Version=v4.8">
<PackageReference Include="Microsoft.Toolkit.Uwp.Notifications"> <Visible>False</Visible>
<Version>7.1.3</Version> <ProductName>Microsoft .NET Framework 4.8 %28x86 and x64%29</ProductName>
</PackageReference> <Install>true</Install>
</ItemGroup> </BootstrapperPackage>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
<Visible>False</Visible>
<ProductName>.NET Framework 3.5 SP1</ProductName>
<Install>false</Install>
</BootstrapperPackage>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project> </Project>