Initial commit

This commit is contained in:
Natlinux81
2022-02-23 01:13:13 +01:00
commit dd08b0bd39
213 changed files with 2708 additions and 0 deletions

2
.gitattributes vendored Normal file
View File

@@ -0,0 +1,2 @@
# Auto detect text files and perform LF normalization
* text=auto

Binary file not shown.

View File

@@ -0,0 +1,11 @@
{
"Version": 1,
"ProjectMap": {
"3c9a4efa-c6c0-4530-a10d-62704ff15490": {
"ProjectGuid": "3c9a4efa-c6c0-4530-a10d-62704ff15490",
"DisplayName": "LotteryApplication",
"ColorIndex": 0
}
},
"NextColorIndex": 1
}

Binary file not shown.

Binary file not shown.

25
LotteryApplication.sln Normal file
View File

@@ -0,0 +1,25 @@
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.0.32112.339
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LotteryApplication", "LotteryApplication\LotteryApplication.csproj", "{3C9A4EFA-C6C0-4530-A10D-62704FF15490}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{3C9A4EFA-C6C0-4530-A10D-62704FF15490}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{3C9A4EFA-C6C0-4530-A10D-62704FF15490}.Debug|Any CPU.Build.0 = Debug|Any CPU
{3C9A4EFA-C6C0-4530-A10D-62704FF15490}.Release|Any CPU.ActiveCfg = Release|Any CPU
{3C9A4EFA-C6C0-4530-A10D-62704FF15490}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {5BB19487-9DA3-4028-BFB9-922D5090B9A9}
EndGlobalSection
EndGlobal

View File

@@ -0,0 +1,14 @@
<Application x:Class="LotteryApplication.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:LotteryApplication"
StartupUri="MainWindow.xaml">
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="Theme/ModernButtonTheme.xaml"/>
<ResourceDictionary Source="Theme/ModernTextBoxTheme.xaml"/>
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Application.Resources>
</Application>

View File

@@ -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 LotteryApplication
{
/// <summary>
/// Interaction logic for App.xaml
/// </summary>
public partial class App : Application
{
}
}

View File

@@ -0,0 +1,10 @@
using System.Windows;
[assembly: ThemeInfo(
ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located
//(used if a resource is not found in the page,
// or application resource dictionaries)
ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located
//(used if a resource is not found in the page,
// app, or any theme specific resource dictionaries)
)]

View File

@@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Runtime.CompilerServices;
using System.Text;
using System.Threading.Tasks;
namespace LotteryApplication.Core
{
internal class ObservableObject : INotifyPropertyChanged
{
public event PropertyChangedEventHandler? PropertyChanged;
public void OnPropertychanged([CallerMemberName] string name = null)
{
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(name));
}
}
}

View File

@@ -0,0 +1,37 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Input;
namespace LotteryApplication.Core
{
internal class RelayCommand : ICommand
{
private Action<object> _execute;
private Func<object, bool> _canExecute;
public event EventHandler CanExecuteChanged
{
add { CommandManager.RequerySuggested += value; }
remove { CommandManager.RequerySuggested -= value; }
}
public RelayCommand(Action<object> execute, Func<object, bool> canExecute = null)
{
_execute = execute;
_canExecute = canExecute;
}
public bool CanExecute(object parameter)
{
return _canExecute == null || _canExecute(parameter);
}
public void Execute(object parameter)
{
_execute(parameter);
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

View File

@@ -0,0 +1,25 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net5.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWPF>true</UseWPF>
</PropertyGroup>
<ItemGroup>
<None Remove="Images\Lottery.png" />
</ItemGroup>
<ItemGroup>
<Folder Include="MVVM\ViewModel\" />
<Folder Include="MVVM\View\" />
<Folder Include="MVVM\Model\" />
<Folder Include="Fonts\" />
</ItemGroup>
<ItemGroup>
<Resource Include="Images\Lottery.png" />
</ItemGroup>
</Project>

View File

@@ -0,0 +1,20 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup />
<ItemGroup>
<ApplicationDefinition Update="App.xaml">
<SubType>Designer</SubType>
</ApplicationDefinition>
</ItemGroup>
<ItemGroup>
<Page Update="MainWindow.xaml">
<SubType>Designer</SubType>
</Page>
<Page Update="Theme\ModernButtonTheme.xaml">
<SubType>Designer</SubType>
</Page>
<Page Update="Theme\ModernTextBoxTheme.xaml">
<SubType>Designer</SubType>
</Page>
</ItemGroup>
</Project>

View File

@@ -0,0 +1,140 @@
<Window x:Class="LotteryApplication.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:LotteryApplication"
mc:Ignorable="d"
Title="MainWindow" Height="650" Width="800"
WindowStyle="None"
ResizeMode="NoResize"
Background="Transparent"
AllowsTransparency="True"
WindowStartupLocation="CenterScreen">
<Border CornerRadius="20">
<Border.Background>
<LinearGradientBrush StartPoint="0,0" EndPoint=" 1,2">
<GradientStop Color="#FF79C165" Offset="0.0"/>
<GradientStop Color="#FFE7DAE8" Offset="0.6"/>
</LinearGradientBrush>
</Border.Background>
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="35"/>
<RowDefinition Height="235"/>
<RowDefinition/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="350"/>
<ColumnDefinition/>
</Grid.ColumnDefinitions>
<Border Grid.Row="0"
Grid.ColumnSpan="2"
Background="Transparent"
MouseDown="Border_MouseDown"/>
<Button Grid.Column="1"
BorderThickness="0"
Background="Transparent"
Foreground="White"
HorizontalAlignment="Right"
Margin="0,0,15,0"
Height="25"
Width="25"
Content="✖" Click="BtnExit"
/>
<Button Grid.Column="1"
BorderThickness="0"
Background="Transparent"
Foreground="White"
HorizontalAlignment="Right"
Margin="0,0,40,3"
Height="25"
Width="25"
FontWeight="Bold"
Content="🗕" Click="BtnMinimizeClick"/>
<StackPanel Grid.Row="1"
Grid.Column="0"
VerticalAlignment="Center">
<TextBlock
HorizontalAlignment="Center"
Text="Lottery"
FontSize="45" FontFamily="MV Boli" Foreground="#FFF1EDED" FontWeight="Bold">
<TextBlock.Effect>
<DropShadowEffect/>
</TextBlock.Effect>
</TextBlock>
<Image
Source="/Images/Lottery.png"
Height="140"/>
</StackPanel>
<StackPanel VerticalAlignment="Center" Grid.Row="2"
>
<Grid Margin="15">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="135"/>
<ColumnDefinition/>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition/>
<RowDefinition/>
</Grid.RowDefinitions>
<TextBlock
Text="First Ticket:"
FontSize="18"
FontWeight="Bold"
FontFamily="MV Boli"
Foreground="#FF157315"/>
<TextBox
Grid.Column="1"
FontSize="14"
Style="{StaticResource ModernTextbox}"/>
<TextBlock Grid.Row="1"
Margin="0,20"
Text="Last Ticket:"
FontSize="18"
FontWeight="Bold"
FontFamily="MV Boli"
Foreground="#FF157315"/>
<TextBox Margin="0,20" Grid.Row="1"
Grid.Column="1"
FontSize="14"
Style="{StaticResource ModernTextbox}"/>
</Grid>
<Button Style="{StaticResource ModernButton}"
Height="45"
Width="140"
Margin="0,20"
Content="Start Raffle"
FontSize="20" Click="BtnRaffleClick"/>
</StackPanel>
<ListBox Grid.Row="1"
Grid.Column="1"
Grid.RowSpan="2"
Margin="0,0,15,15"
Background="Transparent"
x:Name="TicketList"
Foreground="#FF157315"
FontWeight="Bold"
FontSize="14"
BorderThickness="0">
<ListBox.ItemsPanel>
<ItemsPanelTemplate>
<UniformGrid Columns="4"/>
</ItemsPanelTemplate>
</ListBox.ItemsPanel>
</ListBox>
</Grid>
</Border>
</Window>

View File

@@ -0,0 +1,60 @@
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 LotteryApplication
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
}
public void StartRaffel()
{
Random rnd = new Random();
}
private void BtnRaffleClick(object sender, RoutedEventArgs e)
{
TicketList.Items.Clear();
Random rnd = new Random();
for(int i = 0; i <= 99; i++)
TicketList.Items.Add(rnd.Next(10000));
}
private void BtnExit(object sender, RoutedEventArgs e)
{
Application.Current.Shutdown();
}
private void Border_MouseDown(object sender, MouseButtonEventArgs e)
{
if (e.LeftButton == MouseButtonState.Pressed)
DragMove();
}
private void BtnMinimizeClick(object sender, RoutedEventArgs e)
{
this.WindowState = WindowState.Minimized;
}
}
}

View File

@@ -0,0 +1,35 @@
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Style TargetType="{x:Type Button}"
x:Key="ModernButton">
<Setter Property="Foreground" Value="#FF73C373"/>
<Setter Property="FontFamily" Value="Gadugi"/>
<Setter Property="FontWeight" Value="Light"/>
<Setter Property="Background" Value="#FF6D6D6D"/>
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type Button}">
<Border Background="{TemplateBinding Background}" CornerRadius="8"
BorderThickness="2"
BorderBrush="#FF157315">
<ContentPresenter HorizontalAlignment="Center" VerticalAlignment="Center"/>
</Border>
</ControlTemplate>
</Setter.Value>
</Setter>
<Style.Triggers>
<Trigger Property="IsMouseOver" Value="True">
<Setter Property="Background" Value="White"/>
<Setter Property="Opacity" Value="0.8"/>
<Setter Property="Foreground" Value="#FFAF9BB7"/>
</Trigger>
</Style.Triggers>
</Style>
</ResourceDictionary>

View File

@@ -0,0 +1,54 @@
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Style TargetType="{x:Type TextBox}"
x:Key="ModernTextbox">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type TextBox}">
<Border CornerRadius="8"
Background="#FF6D6D6D"
Width="150" Height="35">
<Grid>
<Rectangle StrokeThickness="1"/>
<TextBox Margin="1"
Text="{TemplateBinding Text}"
BorderThickness="0"
Background="Transparent"
VerticalContentAlignment="Center"
HorizontalContentAlignment="Left"
Padding="5"
Foreground="#cfcfcf"
x:Name="InsertTextBox">
</TextBox>
<TextBlock IsHitTestVisible="False"
Text="Insert Ticketnumber"
VerticalAlignment="Center"
HorizontalAlignment="Left"
Padding="5"
Margin="10,0,0,0"
Foreground="#FF73C373">
<TextBlock.Style>
<Style TargetType="{x:Type TextBlock}">
<Style.Triggers>
<DataTrigger Binding="{Binding Text, ElementName=InsertTextBox}" Value="">
<Setter Property="Visibility" Value="Visible"/>
</DataTrigger>
</Style.Triggers>
<Setter Property="Visibility" Value="Hidden"/>
</Style>
</TextBlock.Style>
</TextBlock>
</Grid>
</Border>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</ResourceDictionary>

View File

@@ -0,0 +1,23 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v5.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v5.0": {
"LotteryApplication/1.0.0": {
"runtime": {
"LotteryApplication.dll": {}
}
}
}
},
"libraries": {
"LotteryApplication/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
}
}
}

View File

@@ -0,0 +1,10 @@
{
"runtimeOptions": {
"additionalProbingPaths": [
"C:\\Users\\rapha\\.dotnet\\store\\|arch|\\|tfm|",
"C:\\Users\\rapha\\.nuget\\packages",
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
]
}
}

View File

@@ -0,0 +1,9 @@
{
"runtimeOptions": {
"tfm": "net5.0",
"framework": {
"name": "Microsoft.WindowsDesktop.App",
"version": "5.0.0"
}
}
}

View File

@@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")]

Binary file not shown.

View File

@@ -0,0 +1,84 @@
#pragma checksum "..\..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "3706DF8DA16FC0A2139315FCB3487C0A247DA862"
//------------------------------------------------------------------------------
// <auto-generated>
// Dieser Code wurde von einem Tool generiert.
// Laufzeitversion:4.0.30319.42000
//
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
// der Code erneut generiert wird.
// </auto-generated>
//------------------------------------------------------------------------------
using LotteryApplication;
using System;
using System.Diagnostics;
using System.Windows;
using System.Windows.Automation;
using System.Windows.Controls;
using System.Windows.Controls.Primitives;
using System.Windows.Controls.Ribbon;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Markup;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Media.Effects;
using System.Windows.Media.Imaging;
using System.Windows.Media.Media3D;
using System.Windows.Media.TextFormatting;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.Windows.Shell;
namespace LotteryApplication {
/// <summary>
/// App
/// </summary>
public partial class App : System.Windows.Application {
private bool _contentLoaded;
/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "6.0.1.0")]
public void InitializeComponent() {
if (_contentLoaded) {
return;
}
_contentLoaded = true;
#line 5 "..\..\..\App.xaml"
this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative);
#line default
#line hidden
System.Uri resourceLocater = new System.Uri("/LotteryApplication;component/app.xaml", System.UriKind.Relative);
#line 1 "..\..\..\App.xaml"
System.Windows.Application.LoadComponent(this, resourceLocater);
#line default
#line hidden
}
/// <summary>
/// Application Entry Point.
/// </summary>
[System.STAThreadAttribute()]
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "6.0.1.0")]
public static void Main() {
LotteryApplication.App app = new LotteryApplication.App();
app.InitializeComponent();
app.Run();
}
}
}

View File

@@ -0,0 +1,84 @@
#pragma checksum "..\..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "3706DF8DA16FC0A2139315FCB3487C0A247DA862"
//------------------------------------------------------------------------------
// <auto-generated>
// Dieser Code wurde von einem Tool generiert.
// Laufzeitversion:4.0.30319.42000
//
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
// der Code erneut generiert wird.
// </auto-generated>
//------------------------------------------------------------------------------
using LotteryApplication;
using System;
using System.Diagnostics;
using System.Windows;
using System.Windows.Automation;
using System.Windows.Controls;
using System.Windows.Controls.Primitives;
using System.Windows.Controls.Ribbon;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Markup;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Media.Effects;
using System.Windows.Media.Imaging;
using System.Windows.Media.Media3D;
using System.Windows.Media.TextFormatting;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.Windows.Shell;
namespace LotteryApplication {
/// <summary>
/// App
/// </summary>
public partial class App : System.Windows.Application {
private bool _contentLoaded;
/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "6.0.1.0")]
public void InitializeComponent() {
if (_contentLoaded) {
return;
}
_contentLoaded = true;
#line 5 "..\..\..\App.xaml"
this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative);
#line default
#line hidden
System.Uri resourceLocater = new System.Uri("/LotteryApplication;component/app.xaml", System.UriKind.Relative);
#line 1 "..\..\..\App.xaml"
System.Windows.Application.LoadComponent(this, resourceLocater);
#line default
#line hidden
}
/// <summary>
/// Application Entry Point.
/// </summary>
[System.STAThreadAttribute()]
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "6.0.1.0")]
public static void Main() {
LotteryApplication.App app = new LotteryApplication.App();
app.InitializeComponent();
app.Run();
}
}
}

View File

@@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <auto-generated>
// Dieser Code wurde von einem Tool generiert.
// Laufzeitversion:4.0.30319.42000
//
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
// der Code erneut generiert wird.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("LotteryApplication")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("LotteryApplication")]
[assembly: System.Reflection.AssemblyTitleAttribute("LotteryApplication")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
// Von der MSBuild WriteCodeFragment-Klasse generiert.

View File

@@ -0,0 +1 @@
c431188fd7fbc2f2ce1214082e79646218d09d2d

View File

@@ -0,0 +1,10 @@
is_global = true
build_property.TargetFramework = net5.0-windows
build_property.TargetPlatformMinVersion = 7.0
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = LotteryApplication
build_property.ProjectDir = C:\Nathalie\Programmieren\Projekte\LotteryApplication\LotteryApplication\

View File

@@ -0,0 +1 @@
0f20a831c00feea0a0583ea6285b35ab99c41884

View File

@@ -0,0 +1,25 @@
C:\Nathalie\Programmieren\Projekte\LotteryApplication\LotteryApplication\bin\Debug\net5.0-windows\LotteryApplication.exe
C:\Nathalie\Programmieren\Projekte\LotteryApplication\LotteryApplication\bin\Debug\net5.0-windows\LotteryApplication.deps.json
C:\Nathalie\Programmieren\Projekte\LotteryApplication\LotteryApplication\bin\Debug\net5.0-windows\LotteryApplication.runtimeconfig.json
C:\Nathalie\Programmieren\Projekte\LotteryApplication\LotteryApplication\bin\Debug\net5.0-windows\LotteryApplication.runtimeconfig.dev.json
C:\Nathalie\Programmieren\Projekte\LotteryApplication\LotteryApplication\bin\Debug\net5.0-windows\LotteryApplication.dll
C:\Nathalie\Programmieren\Projekte\LotteryApplication\LotteryApplication\bin\Debug\net5.0-windows\ref\LotteryApplication.dll
C:\Nathalie\Programmieren\Projekte\LotteryApplication\LotteryApplication\bin\Debug\net5.0-windows\LotteryApplication.pdb
C:\Nathalie\Programmieren\Projekte\LotteryApplication\LotteryApplication\obj\Debug\net5.0-windows\LotteryApplication.csproj.AssemblyReference.cache
C:\Nathalie\Programmieren\Projekte\LotteryApplication\LotteryApplication\obj\Debug\net5.0-windows\Theme\ModernButtonTheme.baml
C:\Nathalie\Programmieren\Projekte\LotteryApplication\LotteryApplication\obj\Debug\net5.0-windows\Theme\ModernTextBoxTheme.baml
C:\Nathalie\Programmieren\Projekte\LotteryApplication\LotteryApplication\obj\Debug\net5.0-windows\MainWindow.g.cs
C:\Nathalie\Programmieren\Projekte\LotteryApplication\LotteryApplication\obj\Debug\net5.0-windows\App.g.cs
C:\Nathalie\Programmieren\Projekte\LotteryApplication\LotteryApplication\obj\Debug\net5.0-windows\LotteryApplication_MarkupCompile.cache
C:\Nathalie\Programmieren\Projekte\LotteryApplication\LotteryApplication\obj\Debug\net5.0-windows\LotteryApplication_MarkupCompile.lref
C:\Nathalie\Programmieren\Projekte\LotteryApplication\LotteryApplication\obj\Debug\net5.0-windows\App.baml
C:\Nathalie\Programmieren\Projekte\LotteryApplication\LotteryApplication\obj\Debug\net5.0-windows\MainWindow.baml
C:\Nathalie\Programmieren\Projekte\LotteryApplication\LotteryApplication\obj\Debug\net5.0-windows\LotteryApplication.g.resources
C:\Nathalie\Programmieren\Projekte\LotteryApplication\LotteryApplication\obj\Debug\net5.0-windows\LotteryApplication.GeneratedMSBuildEditorConfig.editorconfig
C:\Nathalie\Programmieren\Projekte\LotteryApplication\LotteryApplication\obj\Debug\net5.0-windows\LotteryApplication.AssemblyInfoInputs.cache
C:\Nathalie\Programmieren\Projekte\LotteryApplication\LotteryApplication\obj\Debug\net5.0-windows\LotteryApplication.AssemblyInfo.cs
C:\Nathalie\Programmieren\Projekte\LotteryApplication\LotteryApplication\obj\Debug\net5.0-windows\LotteryApplication.csproj.CoreCompileInputs.cache
C:\Nathalie\Programmieren\Projekte\LotteryApplication\LotteryApplication\obj\Debug\net5.0-windows\LotteryApplication.dll
C:\Nathalie\Programmieren\Projekte\LotteryApplication\LotteryApplication\obj\Debug\net5.0-windows\ref\LotteryApplication.dll
C:\Nathalie\Programmieren\Projekte\LotteryApplication\LotteryApplication\obj\Debug\net5.0-windows\LotteryApplication.pdb
C:\Nathalie\Programmieren\Projekte\LotteryApplication\LotteryApplication\obj\Debug\net5.0-windows\LotteryApplication.genruntimeconfig.cache

View File

@@ -0,0 +1,11 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v5.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v5.0": {}
},
"libraries": {}
}

View File

@@ -0,0 +1,18 @@
{
"runtimeOptions": {
"tfm": "net5.0",
"framework": {
"name": "Microsoft.WindowsDesktop.App",
"version": "5.0.0"
},
"additionalProbingPaths": [
"C:\\Users\\rapha\\.dotnet\\store\\|arch|\\|tfm|",
"C:\\Users\\rapha\\.nuget\\packages",
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
],
"configProperties": {
"Microsoft.NETCore.DotNetHostPolicy.SetAppPaths": true
}
}
}

View File

@@ -0,0 +1 @@
5dc3de638e7fbb0a4141d251da5fc4426c17152f

View File

@@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <auto-generated>
// Dieser Code wurde von einem Tool generiert.
// Laufzeitversion:4.0.30319.42000
//
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
// der Code erneut generiert wird.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("LotteryApplication")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("LotteryApplication")]
[assembly: System.Reflection.AssemblyTitleAttribute("LotteryApplication")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
// Von der MSBuild WriteCodeFragment-Klasse generiert.

View File

@@ -0,0 +1 @@
c431188fd7fbc2f2ce1214082e79646218d09d2d

View File

@@ -0,0 +1,10 @@
is_global = true
build_property.TargetFramework = net5.0-windows
build_property.TargetPlatformMinVersion = 7.0
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = LotteryApplication_0bkytbf5_wpftmp
build_property.ProjectDir = C:\Nathalie\Programmieren\Projekte\LotteryApplication\LotteryApplication\

View File

@@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <auto-generated>
// Dieser Code wurde von einem Tool generiert.
// Laufzeitversion:4.0.30319.42000
//
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
// der Code erneut generiert wird.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("LotteryApplication")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("LotteryApplication")]
[assembly: System.Reflection.AssemblyTitleAttribute("LotteryApplication")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
// Von der MSBuild WriteCodeFragment-Klasse generiert.

View File

@@ -0,0 +1 @@
c431188fd7fbc2f2ce1214082e79646218d09d2d

View File

@@ -0,0 +1,10 @@
is_global = true
build_property.TargetFramework = net5.0-windows
build_property.TargetPlatformMinVersion = 7.0
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = LotteryApplication_1e25d0fy_wpftmp
build_property.ProjectDir = C:\Nathalie\Programmieren\Projekte\LotteryApplication\LotteryApplication\

View File

@@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <auto-generated>
// Dieser Code wurde von einem Tool generiert.
// Laufzeitversion:4.0.30319.42000
//
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
// der Code erneut generiert wird.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("LotteryApplication")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("LotteryApplication")]
[assembly: System.Reflection.AssemblyTitleAttribute("LotteryApplication")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
// Von der MSBuild WriteCodeFragment-Klasse generiert.

View File

@@ -0,0 +1 @@
c431188fd7fbc2f2ce1214082e79646218d09d2d

View File

@@ -0,0 +1,10 @@
is_global = true
build_property.TargetFramework = net5.0-windows
build_property.TargetPlatformMinVersion = 7.0
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = LotteryApplication_1f1hy4vb_wpftmp
build_property.ProjectDir = C:\Nathalie\Programmieren\Projekte\LotteryApplication\LotteryApplication\

View File

@@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <auto-generated>
// Dieser Code wurde von einem Tool generiert.
// Laufzeitversion:4.0.30319.42000
//
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
// der Code erneut generiert wird.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("LotteryApplication")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("LotteryApplication")]
[assembly: System.Reflection.AssemblyTitleAttribute("LotteryApplication")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
// Von der MSBuild WriteCodeFragment-Klasse generiert.

View File

@@ -0,0 +1 @@
c431188fd7fbc2f2ce1214082e79646218d09d2d

View File

@@ -0,0 +1,10 @@
is_global = true
build_property.TargetFramework = net5.0-windows
build_property.TargetPlatformMinVersion = 7.0
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = LotteryApplication_2f2xc1ei_wpftmp
build_property.ProjectDir = C:\Nathalie\Programmieren\Projekte\LotteryApplication\LotteryApplication\

View File

@@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <auto-generated>
// Dieser Code wurde von einem Tool generiert.
// Laufzeitversion:4.0.30319.42000
//
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
// der Code erneut generiert wird.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("LotteryApplication")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("LotteryApplication")]
[assembly: System.Reflection.AssemblyTitleAttribute("LotteryApplication")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
// Von der MSBuild WriteCodeFragment-Klasse generiert.

View File

@@ -0,0 +1 @@
c431188fd7fbc2f2ce1214082e79646218d09d2d

View File

@@ -0,0 +1,10 @@
is_global = true
build_property.TargetFramework = net5.0-windows
build_property.TargetPlatformMinVersion = 7.0
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = LotteryApplication_3q2lsynq_wpftmp
build_property.ProjectDir = C:\Nathalie\Programmieren\Projekte\LotteryApplication\LotteryApplication\

View File

@@ -0,0 +1,13 @@
//------------------------------------------------------------------------------
// <auto-generated>
// Dieser Code wurde von einem Tool generiert.
// Laufzeitversion:4.0.30319.42000
//
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
// der Code erneut generiert wird.
// </auto-generated>
//------------------------------------------------------------------------------
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("images/lottery.png")]

View File

@@ -0,0 +1,20 @@
LotteryApplication
winexe
C#
.cs
C:\Nathalie\Programmieren\Projekte\LotteryApplication\LotteryApplication\obj\Debug\net5.0-windows\
LotteryApplication
none
false
TRACE;DEBUG;NET;NET5_0;NETCOREAPP
C:\Nathalie\Programmieren\Projekte\LotteryApplication\LotteryApplication\App.xaml
3-605903882
5-691000765
193-1891726104
MainWindow.xaml;Theme\ModernButtonTheme.xaml;Theme\ModernTextBoxTheme.xaml;
False

View File

@@ -0,0 +1,20 @@
LotteryApplication
1.0.0.0
winexe
C#
.cs
C:\Nathalie\Programmieren\Projekte\LotteryApplication\LotteryApplication\obj\Debug\net5.0-windows\
LotteryApplication
none
false
TRACE;DEBUG;NET;NET5_0;NETCOREAPP
C:\Nathalie\Programmieren\Projekte\LotteryApplication\LotteryApplication\App.xaml
3-605903882
71897431273
193-1891726104
MainWindow.xaml;Theme\ModernButtonTheme.xaml;Theme\ModernTextBoxTheme.xaml;
False

View File

@@ -0,0 +1,4 @@
FC:\Nathalie\Programmieren\Projekte\LotteryApplication\LotteryApplication\App.xaml;;
FC:\Nathalie\Programmieren\Projekte\LotteryApplication\LotteryApplication\MainWindow.xaml;;

View File

@@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <auto-generated>
// Dieser Code wurde von einem Tool generiert.
// Laufzeitversion:4.0.30319.42000
//
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
// der Code erneut generiert wird.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("LotteryApplication")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("LotteryApplication")]
[assembly: System.Reflection.AssemblyTitleAttribute("LotteryApplication")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
// Von der MSBuild WriteCodeFragment-Klasse generiert.

View File

@@ -0,0 +1 @@
c431188fd7fbc2f2ce1214082e79646218d09d2d

View File

@@ -0,0 +1,10 @@
is_global = true
build_property.TargetFramework = net5.0-windows
build_property.TargetPlatformMinVersion = 7.0
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = LotteryApplication_amzaz0wf_wpftmp
build_property.ProjectDir = C:\Nathalie\Programmieren\Projekte\LotteryApplication\LotteryApplication\

View File

@@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <auto-generated>
// Dieser Code wurde von einem Tool generiert.
// Laufzeitversion:4.0.30319.42000
//
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
// der Code erneut generiert wird.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("LotteryApplication")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("LotteryApplication")]
[assembly: System.Reflection.AssemblyTitleAttribute("LotteryApplication")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
// Von der MSBuild WriteCodeFragment-Klasse generiert.

View File

@@ -0,0 +1 @@
c431188fd7fbc2f2ce1214082e79646218d09d2d

View File

@@ -0,0 +1,10 @@
is_global = true
build_property.TargetFramework = net5.0-windows
build_property.TargetPlatformMinVersion = 7.0
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = LotteryApplication_asmeg2kr_wpftmp
build_property.ProjectDir = C:\Nathalie\Programmieren\Projekte\LotteryApplication\LotteryApplication\

View File

@@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <auto-generated>
// Dieser Code wurde von einem Tool generiert.
// Laufzeitversion:4.0.30319.42000
//
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
// der Code erneut generiert wird.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("LotteryApplication")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("LotteryApplication")]
[assembly: System.Reflection.AssemblyTitleAttribute("LotteryApplication")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
// Von der MSBuild WriteCodeFragment-Klasse generiert.

View File

@@ -0,0 +1 @@
c431188fd7fbc2f2ce1214082e79646218d09d2d

View File

@@ -0,0 +1,10 @@
is_global = true
build_property.TargetFramework = net5.0-windows
build_property.TargetPlatformMinVersion = 7.0
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = LotteryApplication_batmnmag_wpftmp
build_property.ProjectDir = C:\Nathalie\Programmieren\Projekte\LotteryApplication\LotteryApplication\

View File

@@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <auto-generated>
// Dieser Code wurde von einem Tool generiert.
// Laufzeitversion:4.0.30319.42000
//
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
// der Code erneut generiert wird.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("LotteryApplication")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("LotteryApplication")]
[assembly: System.Reflection.AssemblyTitleAttribute("LotteryApplication")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
// Von der MSBuild WriteCodeFragment-Klasse generiert.

View File

@@ -0,0 +1 @@
c431188fd7fbc2f2ce1214082e79646218d09d2d

View File

@@ -0,0 +1,10 @@
is_global = true
build_property.TargetFramework = net5.0-windows
build_property.TargetPlatformMinVersion = 7.0
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = LotteryApplication_c4t2rrx4_wpftmp
build_property.ProjectDir = C:\Nathalie\Programmieren\Projekte\LotteryApplication\LotteryApplication\

View File

@@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <auto-generated>
// Dieser Code wurde von einem Tool generiert.
// Laufzeitversion:4.0.30319.42000
//
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
// der Code erneut generiert wird.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("LotteryApplication")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("LotteryApplication")]
[assembly: System.Reflection.AssemblyTitleAttribute("LotteryApplication")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
// Von der MSBuild WriteCodeFragment-Klasse generiert.

View File

@@ -0,0 +1 @@
c431188fd7fbc2f2ce1214082e79646218d09d2d

View File

@@ -0,0 +1,10 @@
is_global = true
build_property.TargetFramework = net5.0-windows
build_property.TargetPlatformMinVersion = 7.0
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = LotteryApplication_cbjatsen_wpftmp
build_property.ProjectDir = C:\Nathalie\Programmieren\Projekte\LotteryApplication\LotteryApplication\

View File

@@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <auto-generated>
// Dieser Code wurde von einem Tool generiert.
// Laufzeitversion:4.0.30319.42000
//
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
// der Code erneut generiert wird.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("LotteryApplication")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("LotteryApplication")]
[assembly: System.Reflection.AssemblyTitleAttribute("LotteryApplication")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
// Von der MSBuild WriteCodeFragment-Klasse generiert.

View File

@@ -0,0 +1 @@
c431188fd7fbc2f2ce1214082e79646218d09d2d

View File

@@ -0,0 +1,10 @@
is_global = true
build_property.TargetFramework = net5.0-windows
build_property.TargetPlatformMinVersion = 7.0
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = LotteryApplication_cw35nqbf_wpftmp
build_property.ProjectDir = C:\Nathalie\Programmieren\Projekte\LotteryApplication\LotteryApplication\

View File

@@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <auto-generated>
// Dieser Code wurde von einem Tool generiert.
// Laufzeitversion:4.0.30319.42000
//
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
// der Code erneut generiert wird.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("LotteryApplication")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("LotteryApplication")]
[assembly: System.Reflection.AssemblyTitleAttribute("LotteryApplication")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
// Von der MSBuild WriteCodeFragment-Klasse generiert.

View File

@@ -0,0 +1 @@
c431188fd7fbc2f2ce1214082e79646218d09d2d

View File

@@ -0,0 +1,10 @@
is_global = true
build_property.TargetFramework = net5.0-windows
build_property.TargetPlatformMinVersion = 7.0
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = LotteryApplication_cxz3abt2_wpftmp
build_property.ProjectDir = C:\Nathalie\Programmieren\Projekte\LotteryApplication\LotteryApplication\

View File

@@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <auto-generated>
// Dieser Code wurde von einem Tool generiert.
// Laufzeitversion:4.0.30319.42000
//
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
// der Code erneut generiert wird.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("LotteryApplication")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("LotteryApplication")]
[assembly: System.Reflection.AssemblyTitleAttribute("LotteryApplication")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
// Von der MSBuild WriteCodeFragment-Klasse generiert.

View File

@@ -0,0 +1 @@
c431188fd7fbc2f2ce1214082e79646218d09d2d

View File

@@ -0,0 +1,10 @@
is_global = true
build_property.TargetFramework = net5.0-windows
build_property.TargetPlatformMinVersion = 7.0
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = LotteryApplication_diyhsulk_wpftmp
build_property.ProjectDir = C:\Nathalie\Programmieren\Projekte\LotteryApplication\LotteryApplication\

View File

@@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <auto-generated>
// Dieser Code wurde von einem Tool generiert.
// Laufzeitversion:4.0.30319.42000
//
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
// der Code erneut generiert wird.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("LotteryApplication")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("LotteryApplication")]
[assembly: System.Reflection.AssemblyTitleAttribute("LotteryApplication")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
// Von der MSBuild WriteCodeFragment-Klasse generiert.

View File

@@ -0,0 +1 @@
c431188fd7fbc2f2ce1214082e79646218d09d2d

Some files were not shown because too many files have changed in this diff Show More