Working 4.8 Framework Version

This commit is contained in:
Ferdinand V 2024-11-20 00:19:11 -05:00
parent 5b46cb1fce
commit a0e77762f5
5 changed files with 363 additions and 290 deletions

View File

@ -1,12 +1,13 @@
<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="MainWindow" Height="450" Width="800"> Title="Windows Upgrade Service" Height="250" Width="500" Loaded="Window_Loaded">
<Grid> <Grid>
<Label x:Name="StatusLabel" Content="Label" HorizontalAlignment="Center" Margin="0,34,0,0" VerticalAlignment="Top" Loaded="StatusLabel_Loaded"/>
</Grid>
</Window> </Grid>
</Window>

View File

@ -1,85 +1,110 @@
using DiscUtils.Udf; using DiscUtils.Udf;
using System; using Microsoft.Toolkit.Uwp.Notifications;
using System.Collections.Generic; using System;
using System.Diagnostics; using System.Collections.Generic;
using System.IO; using System.Diagnostics;
using System.Linq; using System.IO;
using System.Text; using System.Linq;
using System.Threading.Tasks; using System.Text;
using System.Windows; using System.Threading.Tasks;
using System.Windows.Controls; using System.Windows;
using System.Windows.Data; using System.Windows.Controls;
using System.Windows.Documents; using System.Windows.Data;
using System.Windows.Input; using System.Windows.Documents;
using System.Windows.Media; using System.Windows.Input;
using System.Windows.Media.Imaging; using System.Windows.Media;
using System.Windows.Navigation; using System.Windows.Media.Imaging;
using System.Windows.Shapes; using System.Windows.Navigation;
using System.Windows.Shapes;
namespace WindowsUpgradeService
{ namespace WindowsUpgradeService
/// <summary> {
/// Interaction logic for MainWindow.xaml /// <summary>
/// </summary> /// Interaction logic for MainWindow.xaml
public partial class MainWindow : Window /// </summary>
{ public partial class MainWindow : Window
public MainWindow() {
{ public MainWindow()
ExtractISO(); {
SetupWindows(); //InitializeComponent();
InitializeComponent(); ExtractISO();
} SetupWindows();
static string OutPutWork = $"{Environment.GetEnvironmentVariable("SystemDrive")}\\WindowsSetup"; }
private void ExtractISO() static string OutPutWork = $"{Environment.GetEnvironmentVariable("SystemDrive")}\\WindowsSetup";
{ 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); {
var DIRcd = udfReader.GetDirectories("\\", "*", SearchOption.AllDirectories); UdfReader udfReader = new UdfReader(isoStream);
var FILEScd = udfReader.GetFiles("\\", "*", SearchOption.AllDirectories); var DIRcd = udfReader.GetDirectories("\\", "*", 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) {
Directory.CreateDirectory($"{OutPutWork}{dir}"); foreach (var dir in DIRcd) {
} Directory.CreateDirectory($"{OutPutWork}{dir}");
}
foreach (var files in FILEScd) {
Stream destOutput = File.OpenWrite($"{OutPutWork}{files}"); foreach (var files in FILEScd) {
Stream fileStream = udfReader.OpenFile(files,FileMode.Open); Stream destOutput = File.OpenWrite($"{OutPutWork}{files}");
fileStream.CopyTo(destOutput); Stream fileStream = udfReader.OpenFile(files,FileMode.Open);
} fileStream.CopyTo(destOutput);
} }
} }
}
private void SetupWindows()
{ private void SetupWindows()
var ProcStartInfo = new ProcessStartInfo() {
{ var ProcStartInfo = new ProcessStartInfo()
FileName = $"{OutPutWork}\\setup.exe", {
Arguments = "/auto upgrade /quiet /noreboot", FileName = $"{OutPutWork}\\setup.exe",
UseShellExecute = true, Arguments = "/auto upgrade /quiet /noreboot",
CreateNoWindow = true, UseShellExecute = true,
CreateNoWindow = true,
};
var ProcStart = new Process() };
{ var ProcStart = new Process()
StartInfo = ProcStartInfo, {
}; StartInfo = ProcStartInfo,
ProcStart.Start(); };
ProcStart.WaitForExit(); NotifyMe("The Upgrade is in Progress.", "Please do not shutdown or unplug your PC.");
if (ProcStart.ExitCode != 0) { Window1 window1 = new Window1();
MessageBox.Show("Failed"); window1.StatusLabel.Content = "The Upgrade is in Progress.";
} else { window1.Show();
MessageBox.Show("Passed"); ProcStart.Start();
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

@ -0,0 +1,13 @@
<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

@ -0,0 +1,40 @@
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,194 +1,188 @@
<?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>
</PropertyGroup> <NuGetPackageImportStamp>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> </NuGetPackageImportStamp>
<PlatformTarget>x64</PlatformTarget> </PropertyGroup>
<DebugSymbols>true</DebugSymbols> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugType>embedded</DebugType> <PlatformTarget>x64</PlatformTarget>
<Optimize>false</Optimize> <DebugSymbols>true</DebugSymbols>
<OutputPath>bin\Debug\</OutputPath> <DebugType>embedded</DebugType>
<DefineConstants>DEBUG;TRACE</DefineConstants> <Optimize>false</Optimize>
<ErrorReport>prompt</ErrorReport> <OutputPath>bin\Debug\</OutputPath>
<WarningLevel>4</WarningLevel> <DefineConstants>DEBUG;TRACE</DefineConstants>
<Prefer32Bit>false</Prefer32Bit> <ErrorReport>prompt</ErrorReport>
</PropertyGroup> <WarningLevel>4</WarningLevel>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> <Prefer32Bit>false</Prefer32Bit>
<PlatformTarget>AnyCPU</PlatformTarget> </PropertyGroup>
<DebugType>pdbonly</DebugType> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<Optimize>true</Optimize> <PlatformTarget>AnyCPU</PlatformTarget>
<OutputPath>bin\Release\</OutputPath> <DebugType>pdbonly</DebugType>
<DefineConstants>TRACE</DefineConstants> <Optimize>true</Optimize>
<ErrorReport>prompt</ErrorReport> <OutputPath>bin\Release\</OutputPath>
<WarningLevel>4</WarningLevel> <DefineConstants>TRACE</DefineConstants>
</PropertyGroup> <ErrorReport>prompt</ErrorReport>
<PropertyGroup> <WarningLevel>4</WarningLevel>
<ApplicationManifest>app.manifest</ApplicationManifest> </PropertyGroup>
</PropertyGroup> <PropertyGroup>
<ItemGroup> <ApplicationManifest>app.manifest</ApplicationManifest>
<Reference Include="DiscUtils.Core, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL"> </PropertyGroup>
<HintPath>..\packages\LTRData.DiscUtils.Core.1.0.48\lib\net48\DiscUtils.Core.dll</HintPath> <ItemGroup>
</Reference> <Reference Include="DiscUtils.Core, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<Reference Include="DiscUtils.Iso9660, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL"> <HintPath>..\packages\LTRData.DiscUtils.Core.1.0.48\lib\net48\DiscUtils.Core.dll</HintPath>
<HintPath>..\packages\LTRData.DiscUtils.Iso9660.1.0.48\lib\net48\DiscUtils.Iso9660.dll</HintPath> </Reference>
</Reference> <Reference Include="DiscUtils.Iso9660, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<Reference Include="DiscUtils.Streams, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL"> <HintPath>..\packages\LTRData.DiscUtils.Iso9660.1.0.48\lib\net48\DiscUtils.Iso9660.dll</HintPath>
<HintPath>..\packages\LTRData.DiscUtils.Streams.1.0.48\lib\net48\DiscUtils.Streams.dll</HintPath> </Reference>
</Reference> <Reference Include="DiscUtils.Streams, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<Reference Include="DiscUtils.Udf, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL"> <HintPath>..\packages\LTRData.DiscUtils.Streams.1.0.48\lib\net48\DiscUtils.Streams.dll</HintPath>
<HintPath>..\packages\LTRData.DiscUtils.Udf.1.0.48\lib\net48\DiscUtils.Udf.dll</HintPath> </Reference>
</Reference> <Reference Include="DiscUtils.Udf, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<Reference Include="LTRData.Extensions, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL"> <HintPath>..\packages\LTRData.DiscUtils.Udf.1.0.48\lib\net48\DiscUtils.Udf.dll</HintPath>
<HintPath>..\packages\LTRData.Extensions.1.0.13\lib\net48\LTRData.Extensions.dll</HintPath> </Reference>
</Reference> <Reference Include="LTRData.Extensions, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<Reference Include="Microsoft.Bcl.HashCode, Version=6.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL"> <HintPath>..\packages\LTRData.Extensions.1.0.13\lib\net48\LTRData.Extensions.dll</HintPath>
<HintPath>..\packages\Microsoft.Bcl.HashCode.6.0.0\lib\net462\Microsoft.Bcl.HashCode.dll</HintPath> </Reference>
</Reference> <Reference Include="Microsoft.Bcl.HashCode, Version=6.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
<Reference Include="System" /> <HintPath>..\packages\Microsoft.Bcl.HashCode.6.0.0\lib\net462\Microsoft.Bcl.HashCode.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" />
</Reference> <Reference Include="System.Buffers, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
<Reference Include="System.ComponentModel.Composition" /> <HintPath>..\packages\System.Buffers.4.5.1\lib\net461\System.Buffers.dll</HintPath>
<Reference Include="System.Data" /> </Reference>
<Reference Include="System.IO, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"> <Reference Include="System.ComponentModel.Composition" />
<HintPath>..\packages\System.IO.4.3.0\lib\net462\System.IO.dll</HintPath> <Reference Include="System.Data" />
<Private>True</Private> <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>
</Reference> </Reference>
<Reference Include="System.Memory, Version=4.0.1.2, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL"> <Reference Include="System.Numerics" />
<HintPath>..\packages\System.Memory.4.5.5\lib\net461\System.Memory.dll</HintPath> <Reference Include="System.Numerics.Vectors, Version=4.1.4.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
</Reference> <HintPath>..\packages\System.Numerics.Vectors.4.5.0\lib\net46\System.Numerics.Vectors.dll</HintPath>
<Reference Include="System.Numerics" /> </Reference>
<Reference Include="System.Numerics.Vectors, Version=4.1.4.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"> <Reference Include="System.Runtime.CompilerServices.Unsafe, Version=4.0.4.1, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\System.Numerics.Vectors.4.5.0\lib\net46\System.Numerics.Vectors.dll</HintPath> <HintPath>..\packages\System.Runtime.CompilerServices.Unsafe.4.5.3\lib\net461\System.Runtime.CompilerServices.Unsafe.dll</HintPath>
</Reference> </Reference>
<Reference Include="System.Runtime, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"> <Reference Include="System.Threading.Tasks.Extensions, Version=4.2.0.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
<HintPath>..\packages\System.Runtime.4.3.0\lib\net462\System.Runtime.dll</HintPath> <HintPath>..\packages\System.Threading.Tasks.Extensions.4.5.4\lib\net461\System.Threading.Tasks.Extensions.dll</HintPath>
<Private>True</Private> </Reference>
<Private>True</Private> <Reference Include="System.ValueTuple, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
</Reference> <HintPath>..\packages\System.ValueTuple.4.5.0\lib\net47\System.ValueTuple.dll</HintPath>
<Reference Include="System.Runtime.CompilerServices.Unsafe, Version=4.0.4.1, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"> </Reference>
<HintPath>..\packages\System.Runtime.CompilerServices.Unsafe.4.5.3\lib\net461\System.Runtime.CompilerServices.Unsafe.dll</HintPath> <Reference Include="System.Xml" />
</Reference> <Reference Include="Microsoft.CSharp" />
<Reference Include="System.Security.Cryptography.Algorithms, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"> <Reference Include="System.Core" />
<HintPath>..\packages\System.Security.Cryptography.Algorithms.4.3.1\lib\net463\System.Security.Cryptography.Algorithms.dll</HintPath> <Reference Include="System.Xml.Linq" />
<Private>True</Private> <Reference Include="System.Data.DataSetExtensions" />
<Private>True</Private> <Reference Include="System.Net.Http" />
</Reference> <Reference Include="System.Xaml">
<Reference Include="System.Security.Cryptography.Encoding, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"> <RequiredTargetFramework>4.0</RequiredTargetFramework>
<HintPath>..\packages\System.Security.Cryptography.Encoding.4.3.0\lib\net46\System.Security.Cryptography.Encoding.dll</HintPath> </Reference>
<Private>True</Private> <Reference Include="WindowsBase" />
<Private>True</Private> <Reference Include="PresentationCore" />
</Reference> <Reference Include="PresentationFramework" />
<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> <ItemGroup>
<Private>True</Private> <ApplicationDefinition Include="App.xaml">
<Private>True</Private> <Generator>MSBuild:Compile</Generator>
</Reference> <SubType>Designer</SubType>
<Reference Include="System.Threading.Tasks.Extensions, Version=4.2.0.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL"> </ApplicationDefinition>
<HintPath>..\packages\System.Threading.Tasks.Extensions.4.5.4\lib\net461\System.Threading.Tasks.Extensions.dll</HintPath> <Compile Include="Window1.xaml.cs">
</Reference> <DependentUpon>Window1.xaml</DependentUpon>
<Reference Include="System.ValueTuple, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL"> </Compile>
<HintPath>..\packages\System.ValueTuple.4.5.0\lib\net47\System.ValueTuple.dll</HintPath> <Page Include="MainWindow.xaml">
</Reference> <Generator>MSBuild:Compile</Generator>
<Reference Include="System.Xml" /> <SubType>Designer</SubType>
<Reference Include="Microsoft.CSharp" /> </Page>
<Reference Include="System.Core" /> <Compile Include="App.xaml.cs">
<Reference Include="System.Xml.Linq" /> <DependentUpon>App.xaml</DependentUpon>
<Reference Include="System.Data.DataSetExtensions" /> <SubType>Code</SubType>
<Reference Include="System.Net.Http" /> </Compile>
<Reference Include="System.Xaml"> <Compile Include="MainWindow.xaml.cs">
<RequiredTargetFramework>4.0</RequiredTargetFramework> <DependentUpon>MainWindow.xaml</DependentUpon>
</Reference> <SubType>Code</SubType>
<Reference Include="WindowsBase" /> </Compile>
<Reference Include="PresentationCore" /> <Page Include="Window1.xaml">
<Reference Include="PresentationFramework" /> <SubType>Designer</SubType>
</ItemGroup> <Generator>MSBuild:Compile</Generator>
<ItemGroup> </Page>
<ApplicationDefinition Include="App.xaml"> </ItemGroup>
<Generator>MSBuild:Compile</Generator> <ItemGroup>
<SubType>Designer</SubType> <Compile Include="Properties\AssemblyInfo.cs">
</ApplicationDefinition> <SubType>Code</SubType>
<Page Include="MainWindow.xaml"> </Compile>
<Generator>MSBuild:Compile</Generator> <Compile Include="Properties\Resources.Designer.cs">
<SubType>Designer</SubType> <AutoGen>True</AutoGen>
</Page> <DesignTime>True</DesignTime>
<Compile Include="App.xaml.cs"> <DependentUpon>Resources.resx</DependentUpon>
<DependentUpon>App.xaml</DependentUpon> </Compile>
<SubType>Code</SubType> <Compile Include="Properties\Settings.Designer.cs">
</Compile> <AutoGen>True</AutoGen>
<Compile Include="MainWindow.xaml.cs"> <DependentUpon>Settings.settings</DependentUpon>
<DependentUpon>MainWindow.xaml</DependentUpon> <DesignTimeSharedInput>True</DesignTimeSharedInput>
<SubType>Code</SubType> </Compile>
</Compile> <EmbeddedResource Include="Properties\Resources.resx">
</ItemGroup> <Generator>ResXFileCodeGenerator</Generator>
<ItemGroup> <LastGenOutput>Resources.Designer.cs</LastGenOutput>
<Compile Include="Properties\AssemblyInfo.cs"> </EmbeddedResource>
<SubType>Code</SubType> <None Include="app.manifest" />
</Compile> <None Include="Properties\Settings.settings">
<Compile Include="Properties\Resources.Designer.cs"> <Generator>SettingsSingleFileGenerator</Generator>
<AutoGen>True</AutoGen> <LastGenOutput>Settings.Designer.cs</LastGenOutput>
<DesignTime>True</DesignTime> </None>
<DependentUpon>Resources.resx</DependentUpon> </ItemGroup>
</Compile> <ItemGroup>
<Compile Include="Properties\Settings.Designer.cs"> <None Include="App.config" />
<AutoGen>True</AutoGen> </ItemGroup>
<DependentUpon>Settings.settings</DependentUpon> <ItemGroup>
<DesignTimeSharedInput>True</DesignTimeSharedInput> <BootstrapperPackage Include=".NETFramework,Version=v4.8">
</Compile> <Visible>False</Visible>
<EmbeddedResource Include="Properties\Resources.resx"> <ProductName>Microsoft .NET Framework 4.8 %28x86 and x64%29</ProductName>
<Generator>ResXFileCodeGenerator</Generator> <Install>true</Install>
<LastGenOutput>Resources.Designer.cs</LastGenOutput> </BootstrapperPackage>
</EmbeddedResource> <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
<None Include="app.manifest" /> <Visible>False</Visible>
<None Include="packages.config" /> <ProductName>.NET Framework 3.5 SP1</ProductName>
<None Include="Properties\Settings.settings"> <Install>false</Install>
<Generator>SettingsSingleFileGenerator</Generator> </BootstrapperPackage>
<LastGenOutput>Settings.Designer.cs</LastGenOutput> </ItemGroup>
</None> <ItemGroup>
</ItemGroup> <PackageReference Include="LTRData.DiscUtils.Udf">
<ItemGroup> <Version>1.0.48</Version>
<None Include="App.config" /> </PackageReference>
</ItemGroup> <PackageReference Include="LTRData.Extensions">
<ItemGroup> <Version>1.0.13</Version>
<BootstrapperPackage Include=".NETFramework,Version=v4.8"> </PackageReference>
<Visible>False</Visible> <PackageReference Include="Microsoft.Toolkit.Uwp.Notifications">
<ProductName>Microsoft .NET Framework 4.8 %28x86 and x64%29</ProductName> <Version>7.1.3</Version>
<Install>true</Install> </PackageReference>
</BootstrapperPackage> </ItemGroup>
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1"> <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Visible>False</Visible>
<ProductName>.NET Framework 3.5 SP1</ProductName>
<Install>false</Install>
</BootstrapperPackage>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project> </Project>