uszoverseny done

This commit is contained in:
szabomarton
2025-02-14 11:20:29 +01:00
parent deb3b3d48f
commit e855b0fa00
130 changed files with 2130 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
<Application x:Class="UszoVersenyGUI.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:UszoVersenyGUI"
StartupUri="MainWindow.xaml">
<Application.Resources>
</Application.Resources>
</Application>

View File

@@ -0,0 +1,14 @@
using System.Configuration;
using System.Data;
using System.Windows;
namespace UszoVersenyGUI
{
/// <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,33 @@
<Window x:Class="UszoVersenyGUI.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:UszoVersenyGUI"
mc:Ignorable="d"
Title="MainWindow" Height="450" Width="800">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition></ColumnDefinition>
<ColumnDefinition></ColumnDefinition>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition></RowDefinition>
<RowDefinition></RowDefinition>
<RowDefinition></RowDefinition>
<RowDefinition></RowDefinition>
<RowDefinition></RowDefinition>
<RowDefinition></RowDefinition>
</Grid.RowDefinitions>
<ListBox Grid.Column="0" Grid.Row="0" Grid.RowSpan="6" Name="EredmenyekLista" SelectionChanged="EredmenyekLista_SelectionChanged"></ListBox>
<TextBlock x:Name="uidTextBlock" Grid.Column="1" Grid.Row="0" FontSize="30" VerticalAlignment="Center" HorizontalAlignment="Center">Uid:</TextBlock>
<TextBlock x:Name="unevTextBlock" Grid.Column="1" Grid.Row="1" FontSize="30" VerticalAlignment="Center" HorizontalAlignment="Center">Unev:</TextBlock>
<TextBlock x:Name="szulevTextBlock" Grid.Column="1" Grid.Row="2" FontSize="30" VerticalAlignment="Center" HorizontalAlignment="Center">Szulev:</TextBlock>
<TextBlock x:Name="szulhoTextBlock" Grid.Column="1" Grid.Row="3" FontSize="30" VerticalAlignment="Center" HorizontalAlignment="Center">Szulho:</TextBlock>
<TextBlock x:Name="nemTextBlock" Grid.Column="1" Grid.Row="4" FontSize="30" VerticalAlignment="Center" HorizontalAlignment="Center">Nem:</TextBlock>
<TextBlock x:Name="uszoidoTextBlock" Grid.Column="1" Grid.Row="5" FontSize="30" VerticalAlignment="Center" HorizontalAlignment="Center">Uszoido:</TextBlock>
</Grid>
</Window>

View File

@@ -0,0 +1,157 @@
using System.IO;
using System.Text;
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 UszoVersenyGUI
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
///
public static class Eredmeny
{
public static List<Uszo> eredmenyek = new List<Uszo>();
public static void AdatokBetoltese(string path)
{
var adatsorok =
File.ReadAllText(path, Encoding.UTF8)
.Split('\n')
.Select(x => x.Trim());
foreach (var item in adatsorok)
{
var adatok = item.Split(';');
bool isNotString = Int32.TryParse(adatok[0].Trim(), out int uid);
if (!isNotString)
{
continue;
}
string unev = adatok[1];
int szulev = Int32.Parse(adatok[2]);
int szulho = Int32.Parse(adatok[3]);
int nem = Int32.Parse(adatok[4]);
double uszoido = Convert.ToDouble(adatok[5].Replace('.', ','));
Uszo uszo = new Uszo(uid, unev, szulev, szulho, nem, uszoido);
eredmenyek.Add(uszo);
}
}
public static double AtlagosUszasiIdo()
{
return Convert.ToDouble(eredmenyek.Average(x => x.uszoido));
}
public static void Gyorsak()
{
FileStream fileStream = new FileStream("gyorsak.txt", FileMode.Create, FileAccess.Write);
StreamWriter streamWriter = new StreamWriter(fileStream);
foreach (var item in eredmenyek)
{
if (item.uszoido < 50)
{
streamWriter.WriteLine(item.kilistazas());
}
}
streamWriter.Close();
fileStream.Close();
}
public static void Leggyorsabb()
{
Uszo uszo = eredmenyek.OrderBy(x => x.uszoido).First();
Console.WriteLine(uszo.kilistazas());
}
}
public class Uszo
{
public int uid;
public string unev;
public int szulev;
public int szulho;
// nő 0 || férfi 1
public int nem;
public double uszoido;
public Uszo(int uid, string unev, int szulev, int szulho, int nem, double uszoido)
{
this.uid = uid;
this.unev = unev;
this.szulev = szulev;
this.szulho = szulho;
this.nem = nem;
this.uszoido = uszoido;
}
public string kilistazas()
{
return $"{uid};{unev};{szulev};{szulho};{nem};{uszoido}";
}
}
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
string path = $@"C:\Users\szabomarton\Desktop\C#\ProgaOra\20250214\Feladat\uszoverseny.csv";
Eredmeny.AdatokBetoltese(path);
foreach (var item in Eredmeny.eredmenyek)
{
EredmenyekLista.Items.Add(item.kilistazas());
}
//5. feladat
Console.WriteLine($"Átlagos úszási idő {Eredmeny.AtlagosUszasiIdo()}");
//6.
Eredmeny.Gyorsak();
//7
Eredmeny.Leggyorsabb();
}
private void EredmenyekLista_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
int index = EredmenyekLista.SelectedIndex;
uidTextBlock.Text = $"Uid: {Eredmeny.eredmenyek[index].uid}";
unevTextBlock.Text = $"Unev: {Eredmeny.eredmenyek[index].unev}";
szulevTextBlock.Text = $"Szulev: {Eredmeny.eredmenyek[index].szulev}";
szulhoTextBlock.Text = $"Szulho: {Eredmeny.eredmenyek[index].szulho}";
uszoidoTextBlock.Text = $"Uszoido: {Eredmeny.eredmenyek[index].uszoido}";
if (Eredmeny.eredmenyek[index].nem == 1)
{
nemTextBlock.Text = $"Nem: férfi";
}
else if (Eredmeny.eredmenyek[index].nem == 0)
{
nemTextBlock.Text = $"Nem: nő";
}
}
}
}

View File

@@ -0,0 +1,11 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UseWPF>true</UseWPF>
</PropertyGroup>
</Project>

View File

@@ -0,0 +1,14 @@
<?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>
</ItemGroup>
</Project>

View File

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

View File

@@ -0,0 +1,18 @@
{
"runtimeOptions": {
"tfm": "net8.0",
"frameworks": [
{
"name": "Microsoft.NETCore.App",
"version": "8.0.0"
},
{
"name": "Microsoft.WindowsDesktop.App",
"version": "8.0.0"
}
],
"configProperties": {
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": true
}
}
}

View File

@@ -0,0 +1,34 @@
1001;Versenyző_1;2010;8;1;48,96
1006;Versenyző_6;1985;2;1;47,51
1008;Versenyző_8;1989;6;0;48,99
1009;Versenyző_9;1985;8;1;46,08
1012;Versenyző_12;1999;12;1;45,19
1015;Versenyző_15;2000;6;1;48,25
1020;Versenyző_20;1998;6;1;49,39
1021;Versenyző_21;1989;3;1;49,61
1025;Versenyző_25;1989;10;1;49,58
1028;Versenyző_28;1995;1;1;46,79
1033;Versenyző_33;2003;1;0;46,41
1034;Versenyző_34;1985;9;1;45,95
1036;Versenyző_36;2004;4;1;45,36
1038;Versenyző_38;1999;3;0;47,61
1039;Versenyző_39;2003;12;0;47,76
1042;Versenyző_42;1993;1;1;45,95
1046;Versenyző_46;1980;5;0;49,35
1047;Versenyző_47;1980;2;0;45,9
1048;Versenyző_48;1987;2;0;49,47
1049;Versenyző_49;1980;6;1;45,55
1050;Versenyző_50;1983;10;1;49,74
1051;Versenyző_51;2000;11;1;47,39
1056;Versenyző_56;1998;11;1;46,88
1069;Versenyző_69;1980;10;1;49,5
1077;Versenyző_77;1998;12;0;46,95
1078;Versenyző_78;2003;8;0;49,26
1079;Versenyző_79;2008;5;1;49,8
1080;Versenyző_80;1989;7;1;46,9
1088;Versenyző_88;1980;6;1;47,74
1089;Versenyző_89;1981;6;0;47,97
1094;Versenyző_94;2001;2;0;46,11
1095;Versenyző_95;1981;11;0;46,83
1096;Versenyző_96;1995;7;1;49,21
1099;Versenyző_99;1991;1;0;46,65

View File

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

View File

@@ -0,0 +1,71 @@
#pragma checksum "..\..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "6E0FE966EDA3EDDA1FC578E1860E067749CA1519"
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
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;
using UszoVersenyGUI;
namespace UszoVersenyGUI {
/// <summary>
/// App
/// </summary>
public partial class App : System.Windows.Application {
/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.8.0")]
public void InitializeComponent() {
#line 5 "..\..\..\App.xaml"
this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative);
#line default
#line hidden
}
/// <summary>
/// Application Entry Point.
/// </summary>
[System.STAThreadAttribute()]
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.8.0")]
public static void Main() {
UszoVersenyGUI.App app = new UszoVersenyGUI.App();
app.InitializeComponent();
app.Run();
}
}
}

View File

@@ -0,0 +1,71 @@
#pragma checksum "..\..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "6E0FE966EDA3EDDA1FC578E1860E067749CA1519"
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
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;
using UszoVersenyGUI;
namespace UszoVersenyGUI {
/// <summary>
/// App
/// </summary>
public partial class App : System.Windows.Application {
/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.8.0")]
public void InitializeComponent() {
#line 5 "..\..\..\App.xaml"
this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative);
#line default
#line hidden
}
/// <summary>
/// Application Entry Point.
/// </summary>
[System.STAThreadAttribute()]
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.8.0")]
public static void Main() {
UszoVersenyGUI.App app = new UszoVersenyGUI.App();
app.InitializeComponent();
app.Run();
}
}
}

View File

@@ -0,0 +1,162 @@
#pragma checksum "..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "5E510553433748855E45B297FDB325B8A96BD3AF"
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
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;
using UszoVersenyGUI;
namespace UszoVersenyGUI {
/// <summary>
/// MainWindow
/// </summary>
public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
#line 23 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.ListBox EredmenyekLista;
#line default
#line hidden
#line 25 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBlock uidTextBlock;
#line default
#line hidden
#line 26 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBlock unevTextBlock;
#line default
#line hidden
#line 27 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBlock szulevTextBlock;
#line default
#line hidden
#line 28 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBlock szulhoTextBlock;
#line default
#line hidden
#line 29 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBlock nemTextBlock;
#line default
#line hidden
#line 30 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBlock uszoidoTextBlock;
#line default
#line hidden
private bool _contentLoaded;
/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.8.0")]
public void InitializeComponent() {
if (_contentLoaded) {
return;
}
_contentLoaded = true;
System.Uri resourceLocater = new System.Uri("/UszoVersenyGUI;component/mainwindow.xaml", System.UriKind.Relative);
#line 1 "..\..\..\MainWindow.xaml"
System.Windows.Application.LoadComponent(this, resourceLocater);
#line default
#line hidden
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.8.0")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
switch (connectionId)
{
case 1:
this.EredmenyekLista = ((System.Windows.Controls.ListBox)(target));
#line 23 "..\..\..\MainWindow.xaml"
this.EredmenyekLista.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.EredmenyekLista_SelectionChanged);
#line default
#line hidden
return;
case 2:
this.uidTextBlock = ((System.Windows.Controls.TextBlock)(target));
return;
case 3:
this.unevTextBlock = ((System.Windows.Controls.TextBlock)(target));
return;
case 4:
this.szulevTextBlock = ((System.Windows.Controls.TextBlock)(target));
return;
case 5:
this.szulhoTextBlock = ((System.Windows.Controls.TextBlock)(target));
return;
case 6:
this.nemTextBlock = ((System.Windows.Controls.TextBlock)(target));
return;
case 7:
this.uszoidoTextBlock = ((System.Windows.Controls.TextBlock)(target));
return;
}
this._contentLoaded = true;
}
}
}

View File

@@ -0,0 +1,162 @@
#pragma checksum "..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "5E510553433748855E45B297FDB325B8A96BD3AF"
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
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;
using UszoVersenyGUI;
namespace UszoVersenyGUI {
/// <summary>
/// MainWindow
/// </summary>
public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
#line 23 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.ListBox EredmenyekLista;
#line default
#line hidden
#line 25 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBlock uidTextBlock;
#line default
#line hidden
#line 26 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBlock unevTextBlock;
#line default
#line hidden
#line 27 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBlock szulevTextBlock;
#line default
#line hidden
#line 28 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBlock szulhoTextBlock;
#line default
#line hidden
#line 29 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBlock nemTextBlock;
#line default
#line hidden
#line 30 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBlock uszoidoTextBlock;
#line default
#line hidden
private bool _contentLoaded;
/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.8.0")]
public void InitializeComponent() {
if (_contentLoaded) {
return;
}
_contentLoaded = true;
System.Uri resourceLocater = new System.Uri("/UszoVersenyGUI;component/mainwindow.xaml", System.UriKind.Relative);
#line 1 "..\..\..\MainWindow.xaml"
System.Windows.Application.LoadComponent(this, resourceLocater);
#line default
#line hidden
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.8.0")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
switch (connectionId)
{
case 1:
this.EredmenyekLista = ((System.Windows.Controls.ListBox)(target));
#line 23 "..\..\..\MainWindow.xaml"
this.EredmenyekLista.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.EredmenyekLista_SelectionChanged);
#line default
#line hidden
return;
case 2:
this.uidTextBlock = ((System.Windows.Controls.TextBlock)(target));
return;
case 3:
this.unevTextBlock = ((System.Windows.Controls.TextBlock)(target));
return;
case 4:
this.szulevTextBlock = ((System.Windows.Controls.TextBlock)(target));
return;
case 5:
this.szulhoTextBlock = ((System.Windows.Controls.TextBlock)(target));
return;
case 6:
this.nemTextBlock = ((System.Windows.Controls.TextBlock)(target));
return;
case 7:
this.uszoidoTextBlock = ((System.Windows.Controls.TextBlock)(target));
return;
}
this._contentLoaded = true;
}
}
}

View File

@@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("UszoVersenyGUI")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+deb3b3d48f2b472c309eabd8e23fc5825223fb4c")]
[assembly: System.Reflection.AssemblyProductAttribute("UszoVersenyGUI")]
[assembly: System.Reflection.AssemblyTitleAttribute("UszoVersenyGUI")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
// Generated by the MSBuild WriteCodeFragment class.

View File

@@ -0,0 +1 @@
30223696b664333e39c9306e41fdf2f1cb1485e769f709301144ea3fe0629247

View File

@@ -0,0 +1,13 @@
is_global = true
build_property.TargetFramework = net8.0-windows
build_property.TargetPlatformMinVersion = 7.0
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = UszoVersenyGUI
build_property.ProjectDir = C:\Users\szabomarton\Desktop\C#\ProgaOra\20250214\UszoVersenyGUI\UszoVersenyGUI\
build_property.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop =

View File

@@ -0,0 +1,6 @@
// <auto-generated/>
global using global::System;
global using global::System.Collections.Generic;
global using global::System.Linq;
global using global::System.Threading;
global using global::System.Threading.Tasks;

View File

@@ -0,0 +1 @@
23671fdb51d7354d72b3bef87c869081a7607ac21d12c743bf7d35e2dc1abd0b

View File

@@ -0,0 +1,20 @@
C:\Users\szabomarton\Desktop\C#\ProgaOra\20250214\UszoVersenyGUI\UszoVersenyGUI\bin\Debug\net8.0-windows\UszoVersenyGUI.exe
C:\Users\szabomarton\Desktop\C#\ProgaOra\20250214\UszoVersenyGUI\UszoVersenyGUI\bin\Debug\net8.0-windows\UszoVersenyGUI.deps.json
C:\Users\szabomarton\Desktop\C#\ProgaOra\20250214\UszoVersenyGUI\UszoVersenyGUI\bin\Debug\net8.0-windows\UszoVersenyGUI.runtimeconfig.json
C:\Users\szabomarton\Desktop\C#\ProgaOra\20250214\UszoVersenyGUI\UszoVersenyGUI\bin\Debug\net8.0-windows\UszoVersenyGUI.dll
C:\Users\szabomarton\Desktop\C#\ProgaOra\20250214\UszoVersenyGUI\UszoVersenyGUI\bin\Debug\net8.0-windows\UszoVersenyGUI.pdb
C:\Users\szabomarton\Desktop\C#\ProgaOra\20250214\UszoVersenyGUI\UszoVersenyGUI\obj\Debug\net8.0-windows\MainWindow.g.cs
C:\Users\szabomarton\Desktop\C#\ProgaOra\20250214\UszoVersenyGUI\UszoVersenyGUI\obj\Debug\net8.0-windows\App.g.cs
C:\Users\szabomarton\Desktop\C#\ProgaOra\20250214\UszoVersenyGUI\UszoVersenyGUI\obj\Debug\net8.0-windows\UszoVersenyGUI_MarkupCompile.cache
C:\Users\szabomarton\Desktop\C#\ProgaOra\20250214\UszoVersenyGUI\UszoVersenyGUI\obj\Debug\net8.0-windows\UszoVersenyGUI_MarkupCompile.lref
C:\Users\szabomarton\Desktop\C#\ProgaOra\20250214\UszoVersenyGUI\UszoVersenyGUI\obj\Debug\net8.0-windows\MainWindow.baml
C:\Users\szabomarton\Desktop\C#\ProgaOra\20250214\UszoVersenyGUI\UszoVersenyGUI\obj\Debug\net8.0-windows\UszoVersenyGUI.g.resources
C:\Users\szabomarton\Desktop\C#\ProgaOra\20250214\UszoVersenyGUI\UszoVersenyGUI\obj\Debug\net8.0-windows\UszoVersenyGUI.GeneratedMSBuildEditorConfig.editorconfig
C:\Users\szabomarton\Desktop\C#\ProgaOra\20250214\UszoVersenyGUI\UszoVersenyGUI\obj\Debug\net8.0-windows\UszoVersenyGUI.AssemblyInfoInputs.cache
C:\Users\szabomarton\Desktop\C#\ProgaOra\20250214\UszoVersenyGUI\UszoVersenyGUI\obj\Debug\net8.0-windows\UszoVersenyGUI.AssemblyInfo.cs
C:\Users\szabomarton\Desktop\C#\ProgaOra\20250214\UszoVersenyGUI\UszoVersenyGUI\obj\Debug\net8.0-windows\UszoVersenyGUI.csproj.CoreCompileInputs.cache
C:\Users\szabomarton\Desktop\C#\ProgaOra\20250214\UszoVersenyGUI\UszoVersenyGUI\obj\Debug\net8.0-windows\UszoVersenyGUI.dll
C:\Users\szabomarton\Desktop\C#\ProgaOra\20250214\UszoVersenyGUI\UszoVersenyGUI\obj\Debug\net8.0-windows\refint\UszoVersenyGUI.dll
C:\Users\szabomarton\Desktop\C#\ProgaOra\20250214\UszoVersenyGUI\UszoVersenyGUI\obj\Debug\net8.0-windows\UszoVersenyGUI.pdb
C:\Users\szabomarton\Desktop\C#\ProgaOra\20250214\UszoVersenyGUI\UszoVersenyGUI\obj\Debug\net8.0-windows\UszoVersenyGUI.genruntimeconfig.cache
C:\Users\szabomarton\Desktop\C#\ProgaOra\20250214\UszoVersenyGUI\UszoVersenyGUI\obj\Debug\net8.0-windows\ref\UszoVersenyGUI.dll

View File

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

View File

@@ -0,0 +1,23 @@
{
"runtimeOptions": {
"tfm": "net8.0",
"frameworks": [
{
"name": "Microsoft.NETCore.App",
"version": "8.0.0"
},
{
"name": "Microsoft.WindowsDesktop.App",
"version": "8.0.0"
}
],
"additionalProbingPaths": [
"C:\\Users\\szabomarton\\.dotnet\\store\\|arch|\\|tfm|",
"C:\\Users\\szabomarton\\.nuget\\packages"
],
"configProperties": {
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": true,
"Microsoft.NETCore.DotNetHostPolicy.SetAppPaths": true
}
}
}

View File

@@ -0,0 +1 @@
3e5b698ac7f3c0fd4e8e2156bff4de349bd792668b0c4bb16445cdcb01d2d878

View File

@@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("UszoVersenyGUI")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+deb3b3d48f2b472c309eabd8e23fc5825223fb4c")]
[assembly: System.Reflection.AssemblyProductAttribute("UszoVersenyGUI")]
[assembly: System.Reflection.AssemblyTitleAttribute("UszoVersenyGUI")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
// Generated by the MSBuild WriteCodeFragment class.

View File

@@ -0,0 +1 @@
30223696b664333e39c9306e41fdf2f1cb1485e769f709301144ea3fe0629247

View File

@@ -0,0 +1,13 @@
is_global = true
build_property.TargetFramework = net8.0-windows
build_property.TargetPlatformMinVersion = 7.0
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = UszoVersenyGUI_33m0nne4_wpftmp
build_property.ProjectDir = C:\Users\szabomarton\Desktop\C#\ProgaOra\20250214\UszoVersenyGUI\UszoVersenyGUI\
build_property.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop =

View File

@@ -0,0 +1,6 @@
// <auto-generated/>
global using global::System;
global using global::System.Collections.Generic;
global using global::System.Linq;
global using global::System.Threading;
global using global::System.Threading.Tasks;

View File

@@ -0,0 +1,20 @@
UszoVersenyGUI
winexe
C#
.cs
C:\Users\szabomarton\Desktop\C#\ProgaOra\20250214\UszoVersenyGUI\UszoVersenyGUI\obj\Debug\net8.0-windows\
UszoVersenyGUI
none
false
TRACE;DEBUG;NET;NET8_0;NETCOREAPP
C:\Users\szabomarton\Desktop\C#\ProgaOra\20250214\UszoVersenyGUI\UszoVersenyGUI\App.xaml
11407045341
4856892301
198-556154604
MainWindow.xaml;
False

View File

@@ -0,0 +1,20 @@
UszoVersenyGUI
1.0.0.0
winexe
C#
.cs
C:\Users\szabomarton\Desktop\C#\ProgaOra\20250214\UszoVersenyGUI\UszoVersenyGUI\obj\Debug\net8.0-windows\
UszoVersenyGUI
none
false
TRACE;DEBUG;NET;NET8_0;NETCOREAPP
C:\Users\szabomarton\Desktop\C#\ProgaOra\20250214\UszoVersenyGUI\UszoVersenyGUI\App.xaml
11407045341
6418014416
198-556154604
MainWindow.xaml;
False

View File

@@ -0,0 +1,4 @@

FC:\Users\szabomarton\Desktop\C#\ProgaOra\20250214\UszoVersenyGUI\UszoVersenyGUI\MainWindow.xaml;;

View File

@@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("UszoVersenyGUI")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+deb3b3d48f2b472c309eabd8e23fc5825223fb4c")]
[assembly: System.Reflection.AssemblyProductAttribute("UszoVersenyGUI")]
[assembly: System.Reflection.AssemblyTitleAttribute("UszoVersenyGUI")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
// Generated by the MSBuild WriteCodeFragment class.

View File

@@ -0,0 +1 @@
30223696b664333e39c9306e41fdf2f1cb1485e769f709301144ea3fe0629247

View File

@@ -0,0 +1,13 @@
is_global = true
build_property.TargetFramework = net8.0-windows
build_property.TargetPlatformMinVersion = 7.0
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = UszoVersenyGUI_dkmqdrf4_wpftmp
build_property.ProjectDir = C:\Users\szabomarton\Desktop\C#\ProgaOra\20250214\UszoVersenyGUI\UszoVersenyGUI\
build_property.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop =

View File

@@ -0,0 +1,6 @@
// <auto-generated/>
global using global::System;
global using global::System.Collections.Generic;
global using global::System.Linq;
global using global::System.Threading;
global using global::System.Threading.Tasks;

View File

@@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("UszoVersenyGUI")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+deb3b3d48f2b472c309eabd8e23fc5825223fb4c")]
[assembly: System.Reflection.AssemblyProductAttribute("UszoVersenyGUI")]
[assembly: System.Reflection.AssemblyTitleAttribute("UszoVersenyGUI")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
// Generated by the MSBuild WriteCodeFragment class.

View File

@@ -0,0 +1 @@
30223696b664333e39c9306e41fdf2f1cb1485e769f709301144ea3fe0629247

View File

@@ -0,0 +1,13 @@
is_global = true
build_property.TargetFramework = net8.0-windows
build_property.TargetPlatformMinVersion = 7.0
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = UszoVersenyGUI_dpb1u53n_wpftmp
build_property.ProjectDir = C:\Users\szabomarton\Desktop\C#\ProgaOra\20250214\UszoVersenyGUI\UszoVersenyGUI\
build_property.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop =

View File

@@ -0,0 +1,6 @@
// <auto-generated/>
global using global::System;
global using global::System.Collections.Generic;
global using global::System.Linq;
global using global::System.Threading;
global using global::System.Threading.Tasks;

View File

@@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("UszoVersenyGUI")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+deb3b3d48f2b472c309eabd8e23fc5825223fb4c")]
[assembly: System.Reflection.AssemblyProductAttribute("UszoVersenyGUI")]
[assembly: System.Reflection.AssemblyTitleAttribute("UszoVersenyGUI")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
// Generated by the MSBuild WriteCodeFragment class.

View File

@@ -0,0 +1 @@
30223696b664333e39c9306e41fdf2f1cb1485e769f709301144ea3fe0629247

View File

@@ -0,0 +1,13 @@
is_global = true
build_property.TargetFramework = net8.0-windows
build_property.TargetPlatformMinVersion = 7.0
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = UszoVersenyGUI_iesuguj2_wpftmp
build_property.ProjectDir = C:\Users\szabomarton\Desktop\C#\ProgaOra\20250214\UszoVersenyGUI\UszoVersenyGUI\
build_property.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop =

View File

@@ -0,0 +1,6 @@
// <auto-generated/>
global using global::System;
global using global::System.Collections.Generic;
global using global::System.Linq;
global using global::System.Threading;
global using global::System.Threading.Tasks;

View File

@@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("UszoVersenyGUI")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+deb3b3d48f2b472c309eabd8e23fc5825223fb4c")]
[assembly: System.Reflection.AssemblyProductAttribute("UszoVersenyGUI")]
[assembly: System.Reflection.AssemblyTitleAttribute("UszoVersenyGUI")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
// Generated by the MSBuild WriteCodeFragment class.

View File

@@ -0,0 +1 @@
30223696b664333e39c9306e41fdf2f1cb1485e769f709301144ea3fe0629247

View File

@@ -0,0 +1,13 @@
is_global = true
build_property.TargetFramework = net8.0-windows
build_property.TargetPlatformMinVersion = 7.0
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = UszoVersenyGUI_kq1tzgg2_wpftmp
build_property.ProjectDir = C:\Users\szabomarton\Desktop\C#\ProgaOra\20250214\UszoVersenyGUI\UszoVersenyGUI\
build_property.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop =

View File

@@ -0,0 +1,6 @@
// <auto-generated/>
global using global::System;
global using global::System.Collections.Generic;
global using global::System.Linq;
global using global::System.Threading;
global using global::System.Threading.Tasks;

View File

@@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("UszoVersenyGUI")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+deb3b3d48f2b472c309eabd8e23fc5825223fb4c")]
[assembly: System.Reflection.AssemblyProductAttribute("UszoVersenyGUI")]
[assembly: System.Reflection.AssemblyTitleAttribute("UszoVersenyGUI")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
// Generated by the MSBuild WriteCodeFragment class.

View File

@@ -0,0 +1 @@
30223696b664333e39c9306e41fdf2f1cb1485e769f709301144ea3fe0629247

View File

@@ -0,0 +1,13 @@
is_global = true
build_property.TargetFramework = net8.0-windows
build_property.TargetPlatformMinVersion = 7.0
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = UszoVersenyGUI_ku2fvdqo_wpftmp
build_property.ProjectDir = C:\Users\szabomarton\Desktop\C#\ProgaOra\20250214\UszoVersenyGUI\UszoVersenyGUI\
build_property.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop =

View File

@@ -0,0 +1,6 @@
// <auto-generated/>
global using global::System;
global using global::System.Collections.Generic;
global using global::System.Linq;
global using global::System.Threading;
global using global::System.Threading.Tasks;

View File

@@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("UszoVersenyGUI")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+deb3b3d48f2b472c309eabd8e23fc5825223fb4c")]
[assembly: System.Reflection.AssemblyProductAttribute("UszoVersenyGUI")]
[assembly: System.Reflection.AssemblyTitleAttribute("UszoVersenyGUI")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
// Generated by the MSBuild WriteCodeFragment class.

View File

@@ -0,0 +1 @@
30223696b664333e39c9306e41fdf2f1cb1485e769f709301144ea3fe0629247

View File

@@ -0,0 +1,13 @@
is_global = true
build_property.TargetFramework = net8.0-windows
build_property.TargetPlatformMinVersion = 7.0
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = UszoVersenyGUI_qqzvempi_wpftmp
build_property.ProjectDir = C:\Users\szabomarton\Desktop\C#\ProgaOra\20250214\UszoVersenyGUI\UszoVersenyGUI\
build_property.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop =

View File

@@ -0,0 +1,6 @@
// <auto-generated/>
global using global::System;
global using global::System.Collections.Generic;
global using global::System.Linq;
global using global::System.Threading;
global using global::System.Threading.Tasks;

View File

@@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("UszoVersenyGUI")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+deb3b3d48f2b472c309eabd8e23fc5825223fb4c")]
[assembly: System.Reflection.AssemblyProductAttribute("UszoVersenyGUI")]
[assembly: System.Reflection.AssemblyTitleAttribute("UszoVersenyGUI")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
// Generated by the MSBuild WriteCodeFragment class.

View File

@@ -0,0 +1 @@
30223696b664333e39c9306e41fdf2f1cb1485e769f709301144ea3fe0629247

View File

@@ -0,0 +1,13 @@
is_global = true
build_property.TargetFramework = net8.0-windows
build_property.TargetPlatformMinVersion = 7.0
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = UszoVersenyGUI_wcg1ferr_wpftmp
build_property.ProjectDir = C:\Users\szabomarton\Desktop\C#\ProgaOra\20250214\UszoVersenyGUI\UszoVersenyGUI\
build_property.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop =

View File

@@ -0,0 +1,6 @@
// <auto-generated/>
global using global::System;
global using global::System.Collections.Generic;
global using global::System.Linq;
global using global::System.Threading;
global using global::System.Threading.Tasks;

View File

@@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("UszoVersenyGUI")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+deb3b3d48f2b472c309eabd8e23fc5825223fb4c")]
[assembly: System.Reflection.AssemblyProductAttribute("UszoVersenyGUI")]
[assembly: System.Reflection.AssemblyTitleAttribute("UszoVersenyGUI")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
// Generated by the MSBuild WriteCodeFragment class.

View File

@@ -0,0 +1 @@
30223696b664333e39c9306e41fdf2f1cb1485e769f709301144ea3fe0629247

View File

@@ -0,0 +1,13 @@
is_global = true
build_property.TargetFramework = net8.0-windows
build_property.TargetPlatformMinVersion = 7.0
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = UszoVersenyGUI_wzkypbgh_wpftmp
build_property.ProjectDir = C:\Users\szabomarton\Desktop\C#\ProgaOra\20250214\UszoVersenyGUI\UszoVersenyGUI\
build_property.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop =

View File

@@ -0,0 +1,6 @@
// <auto-generated/>
global using global::System;
global using global::System.Collections.Generic;
global using global::System.Linq;
global using global::System.Threading;
global using global::System.Threading.Tasks;

View File

@@ -0,0 +1,71 @@
{
"format": 1,
"restore": {
"C:\\Users\\szabomarton\\Desktop\\C#\\ProgaOra\\20250214\\UszoVersenyGUI\\UszoVersenyGUI\\UszoVersenyGUI.csproj": {}
},
"projects": {
"C:\\Users\\szabomarton\\Desktop\\C#\\ProgaOra\\20250214\\UszoVersenyGUI\\UszoVersenyGUI\\UszoVersenyGUI.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\Users\\szabomarton\\Desktop\\C#\\ProgaOra\\20250214\\UszoVersenyGUI\\UszoVersenyGUI\\UszoVersenyGUI.csproj",
"projectName": "UszoVersenyGUI",
"projectPath": "C:\\Users\\szabomarton\\Desktop\\C#\\ProgaOra\\20250214\\UszoVersenyGUI\\UszoVersenyGUI\\UszoVersenyGUI.csproj",
"packagesPath": "C:\\Users\\szabomarton\\.nuget\\packages\\",
"outputPath": "C:\\Users\\szabomarton\\Desktop\\C#\\ProgaOra\\20250214\\UszoVersenyGUI\\UszoVersenyGUI\\obj\\",
"projectStyle": "PackageReference",
"configFilePaths": [
"C:\\Users\\szabomarton\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net8.0-windows"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net8.0-windows7.0": {
"targetAlias": "net8.0-windows",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
},
"restoreAuditProperties": {
"enableAudit": "true",
"auditLevel": "low",
"auditMode": "direct"
}
},
"frameworks": {
"net8.0-windows7.0": {
"targetAlias": "net8.0-windows",
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48",
"net481"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
},
"Microsoft.WindowsDesktop.App.WPF": {
"privateAssets": "none"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.400/PortableRuntimeIdentifierGraph.json"
}
}
}
}
}

View File

@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\szabomarton\.nuget\packages\</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.11.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\szabomarton\.nuget\packages\" />
</ItemGroup>
</Project>

View File

@@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />

View File

@@ -0,0 +1,76 @@
{
"version": 3,
"targets": {
"net8.0-windows7.0": {}
},
"libraries": {},
"projectFileDependencyGroups": {
"net8.0-windows7.0": []
},
"packageFolders": {
"C:\\Users\\szabomarton\\.nuget\\packages\\": {}
},
"project": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\Users\\szabomarton\\Desktop\\C#\\ProgaOra\\20250214\\UszoVersenyGUI\\UszoVersenyGUI\\UszoVersenyGUI.csproj",
"projectName": "UszoVersenyGUI",
"projectPath": "C:\\Users\\szabomarton\\Desktop\\C#\\ProgaOra\\20250214\\UszoVersenyGUI\\UszoVersenyGUI\\UszoVersenyGUI.csproj",
"packagesPath": "C:\\Users\\szabomarton\\.nuget\\packages\\",
"outputPath": "C:\\Users\\szabomarton\\Desktop\\C#\\ProgaOra\\20250214\\UszoVersenyGUI\\UszoVersenyGUI\\obj\\",
"projectStyle": "PackageReference",
"configFilePaths": [
"C:\\Users\\szabomarton\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net8.0-windows"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net8.0-windows7.0": {
"targetAlias": "net8.0-windows",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
},
"restoreAuditProperties": {
"enableAudit": "true",
"auditLevel": "low",
"auditMode": "direct"
}
},
"frameworks": {
"net8.0-windows7.0": {
"targetAlias": "net8.0-windows",
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48",
"net481"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
},
"Microsoft.WindowsDesktop.App.WPF": {
"privateAssets": "none"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.400/PortableRuntimeIdentifierGraph.json"
}
}
}
}

View File

@@ -0,0 +1,8 @@
{
"version": 2,
"dgSpecHash": "UNuCzHpWRBs=",
"success": true,
"projectFilePath": "C:\\Users\\szabomarton\\Desktop\\C#\\ProgaOra\\20250214\\UszoVersenyGUI\\UszoVersenyGUI\\UszoVersenyGUI.csproj",
"expectedPackageFiles": [],
"logs": []
}