mirror of
https://github.com/Alvin-Zilverstand/ict-algemeen-opdrachten.git
synced 2026-03-06 11:06:59 +01:00
Update project configuration to target .NET 6.0 and enable Windows Forms support
This commit is contained in:
@@ -1,10 +1,12 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>net9.0</TargetFramework>
|
||||
<OutputType>WinExe</OutputType>
|
||||
<TargetFramework>net9.0-windows</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
<UseWindowsForms>true</UseWindowsForms>
|
||||
<LangVersion>10.0</LangVersion>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
||||
|
||||
@@ -1,13 +1,18 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Windows.Forms;
|
||||
|
||||
class Bankrekening
|
||||
{
|
||||
public string Rekeningnummer { get; }
|
||||
private decimal saldo;
|
||||
private List<Transactie> transacties;
|
||||
|
||||
public Bankrekening(decimal beginsaldo)
|
||||
public Bankrekening(string rekeningnummer, decimal beginsaldo)
|
||||
{
|
||||
Rekeningnummer = rekeningnummer;
|
||||
saldo = beginsaldo;
|
||||
transacties = new List<Transactie>();
|
||||
}
|
||||
|
||||
public void Storten(decimal bedrag)
|
||||
@@ -15,6 +20,7 @@ class Bankrekening
|
||||
if (bedrag > 0)
|
||||
{
|
||||
saldo += bedrag;
|
||||
transacties.Add(new Transactie(bedrag, "Storting"));
|
||||
}
|
||||
else
|
||||
{
|
||||
@@ -27,6 +33,7 @@ class Bankrekening
|
||||
if (bedrag > 0 && bedrag <= saldo)
|
||||
{
|
||||
saldo -= bedrag;
|
||||
transacties.Add(new Transactie(-bedrag, "Opname"));
|
||||
}
|
||||
else
|
||||
{
|
||||
@@ -38,6 +45,25 @@ class Bankrekening
|
||||
{
|
||||
return saldo;
|
||||
}
|
||||
|
||||
public List<Transactie> GetTransactieGeschiedenis()
|
||||
{
|
||||
return transacties;
|
||||
}
|
||||
}
|
||||
|
||||
class Transactie
|
||||
{
|
||||
public decimal Bedrag { get; }
|
||||
public string Beschrijving { get; }
|
||||
public DateTime Datum { get; }
|
||||
|
||||
public Transactie(decimal bedrag, string beschrijving)
|
||||
{
|
||||
Bedrag = bedrag;
|
||||
Beschrijving = beschrijving;
|
||||
Datum = DateTime.Now;
|
||||
}
|
||||
}
|
||||
|
||||
public class MainForm : Form
|
||||
@@ -47,23 +73,27 @@ public class MainForm : Form
|
||||
private TextBox bedragTextBox;
|
||||
private Button stortenButton;
|
||||
private Button opnemenButton;
|
||||
private Button transactieGeschiedenisButton;
|
||||
|
||||
public MainForm()
|
||||
{
|
||||
mijnRekening = new Bankrekening(1000);
|
||||
mijnRekening = new Bankrekening("NL01BANK0123456789", 1000);
|
||||
|
||||
saldoLabel = new Label() { Text = $"Saldo: {mijnRekening.ControleerSaldo()}", Top = 20, Left = 20, Width = 200 };
|
||||
bedragTextBox = new TextBox() { Top = 50, Left = 20, Width = 200 };
|
||||
stortenButton = new Button() { Text = "Storten", Top = 80, Left = 20 };
|
||||
opnemenButton = new Button() { Text = "Opnemen", Top = 110, Left = 20 };
|
||||
transactieGeschiedenisButton = new Button() { Text = "Transactiegeschiedenis", Top = 140, Left = 20 };
|
||||
|
||||
stortenButton.Click += StortenButton_Click;
|
||||
opnemenButton.Click += OpnemenButton_Click;
|
||||
transactieGeschiedenisButton.Click += TransactieGeschiedenisButton_Click;
|
||||
|
||||
Controls.Add(saldoLabel);
|
||||
Controls.Add(bedragTextBox);
|
||||
Controls.Add(stortenButton);
|
||||
Controls.Add(opnemenButton);
|
||||
Controls.Add(transactieGeschiedenisButton);
|
||||
}
|
||||
|
||||
private void StortenButton_Click(object sender, EventArgs e)
|
||||
@@ -93,13 +123,33 @@ public class MainForm : Form
|
||||
MessageBox.Show(ex.Message);
|
||||
}
|
||||
}
|
||||
|
||||
private void TransactieGeschiedenisButton_Click(object sender, EventArgs e)
|
||||
{
|
||||
var transactieGeschiedenis = mijnRekening.GetTransactieGeschiedenis();
|
||||
string geschiedenis = "Transactiegeschiedenis:\n";
|
||||
foreach (var transactie in transactieGeschiedenis)
|
||||
{
|
||||
geschiedenis += $"{transactie.Datum}: {transactie.Beschrijving} - {transactie.Bedrag:C}\n";
|
||||
}
|
||||
MessageBox.Show(geschiedenis);
|
||||
}
|
||||
}
|
||||
|
||||
class Program
|
||||
{
|
||||
[STAThread]
|
||||
static void Main()
|
||||
{
|
||||
var mijnRekening = new Bankrekening("NL01BANK0123456789", 1000);
|
||||
mijnRekening.Storten(100.00m);
|
||||
mijnRekening.Opnemen(50.00m);
|
||||
|
||||
Console.WriteLine("Transactiegeschiedenis:");
|
||||
foreach (var transactie in mijnRekening.GetTransactieGeschiedenis())
|
||||
{
|
||||
Console.WriteLine($"{transactie.Datum}: {transactie.Beschrijving} - {transactie.Bedrag:C}");
|
||||
}
|
||||
|
||||
Application.EnableVisualStyles();
|
||||
Application.SetCompatibleTextRenderingDefault(false);
|
||||
Application.Run(new MainForm());
|
||||
|
||||
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"runtimeTarget": {
|
||||
"name": ".NETCoreApp,Version=v6.0",
|
||||
"signature": ""
|
||||
},
|
||||
"compilationOptions": {},
|
||||
"targets": {
|
||||
".NETCoreApp,Version=v6.0": {
|
||||
"Bankrekening/1.0.0": {
|
||||
"runtime": {
|
||||
"Bankrekening.dll": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"Bankrekening/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
Csharp/Bankrekening/bin/Debug/net6.0-windows/Bankrekening.dll
Normal file
BIN
Csharp/Bankrekening/bin/Debug/net6.0-windows/Bankrekening.dll
Normal file
Binary file not shown.
BIN
Csharp/Bankrekening/bin/Debug/net6.0-windows/Bankrekening.exe
Normal file
BIN
Csharp/Bankrekening/bin/Debug/net6.0-windows/Bankrekening.exe
Normal file
Binary file not shown.
BIN
Csharp/Bankrekening/bin/Debug/net6.0-windows/Bankrekening.pdb
Normal file
BIN
Csharp/Bankrekening/bin/Debug/net6.0-windows/Bankrekening.pdb
Normal file
Binary file not shown.
@@ -0,0 +1,15 @@
|
||||
{
|
||||
"runtimeOptions": {
|
||||
"tfm": "net6.0",
|
||||
"frameworks": [
|
||||
{
|
||||
"name": "Microsoft.NETCore.App",
|
||||
"version": "6.0.0"
|
||||
},
|
||||
{
|
||||
"name": "Microsoft.WindowsDesktop.App",
|
||||
"version": "6.0.0"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -21,14 +21,14 @@
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config"
|
||||
],
|
||||
"originalTargetFrameworks": [
|
||||
"net9.0"
|
||||
"net6.0-windows"
|
||||
],
|
||||
"sources": {
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"net9.0": {
|
||||
"targetAlias": "net9.0",
|
||||
"net6.0-windows7.0": {
|
||||
"targetAlias": "net6.0-windows",
|
||||
"projectReferences": {}
|
||||
}
|
||||
},
|
||||
@@ -45,8 +45,8 @@
|
||||
"SdkAnalysisLevel": "9.0.100"
|
||||
},
|
||||
"frameworks": {
|
||||
"net9.0": {
|
||||
"targetAlias": "net9.0",
|
||||
"net6.0-windows7.0": {
|
||||
"targetAlias": "net6.0-windows",
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
@@ -58,12 +58,33 @@
|
||||
],
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"downloadDependencies": [
|
||||
{
|
||||
"name": "Microsoft.AspNetCore.App.Ref",
|
||||
"version": "[6.0.36, 6.0.36]"
|
||||
},
|
||||
{
|
||||
"name": "Microsoft.NETCore.App.Host.win-x64",
|
||||
"version": "[6.0.36, 6.0.36]"
|
||||
},
|
||||
{
|
||||
"name": "Microsoft.NETCore.App.Ref",
|
||||
"version": "[6.0.36, 6.0.36]"
|
||||
},
|
||||
{
|
||||
"name": "Microsoft.WindowsDesktop.App.Ref",
|
||||
"version": "[6.0.36, 6.0.36]"
|
||||
}
|
||||
],
|
||||
"frameworkReferences": {
|
||||
"Microsoft.NETCore.App": {
|
||||
"privateAssets": "all"
|
||||
},
|
||||
"Microsoft.WindowsDesktop.App.WindowsForms": {
|
||||
"privateAssets": "none"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.102/PortableRuntimeIdentifierGraph.json"
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.102\\RuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,4 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = ".NET 5.0")]
|
||||
@@ -0,0 +1,24 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
//
|
||||
// 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("Bankrekening")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+718626c83cf3b2aed34405e3da07ce10cc28e673")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("Bankrekening")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("Bankrekening")]
|
||||
[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.
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
f442dd084fa2ce689fcb8e446190390ba2122c7fe4bfacfa072c829a63a8b0f6
|
||||
@@ -0,0 +1,22 @@
|
||||
is_global = true
|
||||
build_property.ApplicationManifest =
|
||||
build_property.StartupObject =
|
||||
build_property.ApplicationDefaultFont =
|
||||
build_property.ApplicationHighDpiMode =
|
||||
build_property.ApplicationUseCompatibleTextRendering =
|
||||
build_property.ApplicationVisualStyles =
|
||||
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.EnforceExtendedAnalyzerRules =
|
||||
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||
build_property.RootNamespace = Bankrekening
|
||||
build_property.ProjectDir = C:\Users\steen\Desktop\Alvin\ict-algemeen-opdrachten\Csharp\Bankrekening\
|
||||
build_property.EnableComHosting =
|
||||
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||
build_property.CsWinRTUseWindowsUIXamlProjections = false
|
||||
build_property.EffectiveAnalysisLevelStyle = 5.0
|
||||
build_property.EnableCodeStyleSeverity =
|
||||
@@ -0,0 +1,10 @@
|
||||
// <auto-generated/>
|
||||
global using global::System;
|
||||
global using global::System.Collections.Generic;
|
||||
global using global::System.Drawing;
|
||||
global using global::System.IO;
|
||||
global using global::System.Linq;
|
||||
global using global::System.Net.Http;
|
||||
global using global::System.Threading;
|
||||
global using global::System.Threading.Tasks;
|
||||
global using global::System.Windows.Forms;
|
||||
Binary file not shown.
@@ -0,0 +1 @@
|
||||
7fc366dd88dc4348d71f94ad31784c597a660f231ade899cfa70e737e8a9bfb4
|
||||
@@ -0,0 +1,5 @@
|
||||
C:\Users\steen\Desktop\Alvin\ict-algemeen-opdrachten\Csharp\Bankrekening\obj\Debug\net5.0-windows\Bankrekening.GeneratedMSBuildEditorConfig.editorconfig
|
||||
C:\Users\steen\Desktop\Alvin\ict-algemeen-opdrachten\Csharp\Bankrekening\obj\Debug\net5.0-windows\Bankrekening.AssemblyInfoInputs.cache
|
||||
C:\Users\steen\Desktop\Alvin\ict-algemeen-opdrachten\Csharp\Bankrekening\obj\Debug\net5.0-windows\Bankrekening.AssemblyInfo.cs
|
||||
C:\Users\steen\Desktop\Alvin\ict-algemeen-opdrachten\Csharp\Bankrekening\obj\Debug\net5.0-windows\Bankrekening.csproj.CoreCompileInputs.cache
|
||||
C:\Users\steen\Desktop\Alvin\ict-algemeen-opdrachten\Csharp\Bankrekening\obj\Debug\net5.0-windows\Bankrekening.sourcelink.json
|
||||
@@ -0,0 +1 @@
|
||||
{"documents":{"C:\\Users\\steen\\Desktop\\Alvin\\ict-algemeen-opdrachten\\*":"https://raw.githubusercontent.com/Alvin-Zilverstand/ict-algemeen-opdrachten/718626c83cf3b2aed34405e3da07ce10cc28e673/*"}}
|
||||
@@ -0,0 +1,4 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = ".NET 6.0")]
|
||||
@@ -0,0 +1,24 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
//
|
||||
// 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("Bankrekening")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+718626c83cf3b2aed34405e3da07ce10cc28e673")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("Bankrekening")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("Bankrekening")]
|
||||
[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.
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
f442dd084fa2ce689fcb8e446190390ba2122c7fe4bfacfa072c829a63a8b0f6
|
||||
@@ -0,0 +1,22 @@
|
||||
is_global = true
|
||||
build_property.ApplicationManifest =
|
||||
build_property.StartupObject =
|
||||
build_property.ApplicationDefaultFont =
|
||||
build_property.ApplicationHighDpiMode =
|
||||
build_property.ApplicationUseCompatibleTextRendering =
|
||||
build_property.ApplicationVisualStyles =
|
||||
build_property.TargetFramework = net6.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 = Bankrekening
|
||||
build_property.ProjectDir = C:\Users\steen\Desktop\Alvin\ict-algemeen-opdrachten\Csharp\Bankrekening\
|
||||
build_property.EnableComHosting =
|
||||
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||
build_property.CsWinRTUseWindowsUIXamlProjections = false
|
||||
build_property.EffectiveAnalysisLevelStyle = 6.0
|
||||
build_property.EnableCodeStyleSeverity =
|
||||
@@ -0,0 +1,10 @@
|
||||
// <auto-generated/>
|
||||
global using global::System;
|
||||
global using global::System.Collections.Generic;
|
||||
global using global::System.Drawing;
|
||||
global using global::System.IO;
|
||||
global using global::System.Linq;
|
||||
global using global::System.Net.Http;
|
||||
global using global::System.Threading;
|
||||
global using global::System.Threading.Tasks;
|
||||
global using global::System.Windows.Forms;
|
||||
Binary file not shown.
@@ -0,0 +1 @@
|
||||
72b0d2ee341d88adacf43ef407c893e3e0fc3b4b2c701fc9c8653f2b2ce30c6d
|
||||
@@ -0,0 +1,15 @@
|
||||
C:\Users\steen\Desktop\Alvin\ict-algemeen-opdrachten\Csharp\Bankrekening\bin\Debug\net6.0-windows\Bankrekening.exe
|
||||
C:\Users\steen\Desktop\Alvin\ict-algemeen-opdrachten\Csharp\Bankrekening\bin\Debug\net6.0-windows\Bankrekening.deps.json
|
||||
C:\Users\steen\Desktop\Alvin\ict-algemeen-opdrachten\Csharp\Bankrekening\bin\Debug\net6.0-windows\Bankrekening.runtimeconfig.json
|
||||
C:\Users\steen\Desktop\Alvin\ict-algemeen-opdrachten\Csharp\Bankrekening\bin\Debug\net6.0-windows\Bankrekening.dll
|
||||
C:\Users\steen\Desktop\Alvin\ict-algemeen-opdrachten\Csharp\Bankrekening\bin\Debug\net6.0-windows\Bankrekening.pdb
|
||||
C:\Users\steen\Desktop\Alvin\ict-algemeen-opdrachten\Csharp\Bankrekening\obj\Debug\net6.0-windows\Bankrekening.GeneratedMSBuildEditorConfig.editorconfig
|
||||
C:\Users\steen\Desktop\Alvin\ict-algemeen-opdrachten\Csharp\Bankrekening\obj\Debug\net6.0-windows\Bankrekening.AssemblyInfoInputs.cache
|
||||
C:\Users\steen\Desktop\Alvin\ict-algemeen-opdrachten\Csharp\Bankrekening\obj\Debug\net6.0-windows\Bankrekening.AssemblyInfo.cs
|
||||
C:\Users\steen\Desktop\Alvin\ict-algemeen-opdrachten\Csharp\Bankrekening\obj\Debug\net6.0-windows\Bankrekening.csproj.CoreCompileInputs.cache
|
||||
C:\Users\steen\Desktop\Alvin\ict-algemeen-opdrachten\Csharp\Bankrekening\obj\Debug\net6.0-windows\Bankrekening.sourcelink.json
|
||||
C:\Users\steen\Desktop\Alvin\ict-algemeen-opdrachten\Csharp\Bankrekening\obj\Debug\net6.0-windows\Bankrekening.dll
|
||||
C:\Users\steen\Desktop\Alvin\ict-algemeen-opdrachten\Csharp\Bankrekening\obj\Debug\net6.0-windows\refint\Bankrekening.dll
|
||||
C:\Users\steen\Desktop\Alvin\ict-algemeen-opdrachten\Csharp\Bankrekening\obj\Debug\net6.0-windows\Bankrekening.pdb
|
||||
C:\Users\steen\Desktop\Alvin\ict-algemeen-opdrachten\Csharp\Bankrekening\obj\Debug\net6.0-windows\Bankrekening.genruntimeconfig.cache
|
||||
C:\Users\steen\Desktop\Alvin\ict-algemeen-opdrachten\Csharp\Bankrekening\obj\Debug\net6.0-windows\ref\Bankrekening.dll
|
||||
BIN
Csharp/Bankrekening/obj/Debug/net6.0-windows/Bankrekening.dll
Normal file
BIN
Csharp/Bankrekening/obj/Debug/net6.0-windows/Bankrekening.dll
Normal file
Binary file not shown.
@@ -0,0 +1 @@
|
||||
5352897423087deda1d6c352e279064bb0bd1ff2359903923c38e6a00317c818
|
||||
BIN
Csharp/Bankrekening/obj/Debug/net6.0-windows/Bankrekening.pdb
Normal file
BIN
Csharp/Bankrekening/obj/Debug/net6.0-windows/Bankrekening.pdb
Normal file
Binary file not shown.
@@ -0,0 +1 @@
|
||||
{"documents":{"C:\\Users\\steen\\Desktop\\Alvin\\ict-algemeen-opdrachten\\*":"https://raw.githubusercontent.com/Alvin-Zilverstand/ict-algemeen-opdrachten/718626c83cf3b2aed34405e3da07ce10cc28e673/*"}}
|
||||
BIN
Csharp/Bankrekening/obj/Debug/net6.0-windows/apphost.exe
Normal file
BIN
Csharp/Bankrekening/obj/Debug/net6.0-windows/apphost.exe
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -13,7 +13,7 @@ using System.Reflection;
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("Bankrekening")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+6ad601307de15bf7ac384a00ca81c36ccccc42ab")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+718626c83cf3b2aed34405e3da07ce10cc28e673")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("Bankrekening")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("Bankrekening")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
@@ -1 +1 @@
|
||||
6c981917e30bc8e5f062e03c25e1e018186518d419a6decd20196c84486be97d
|
||||
3c97579c76f9e7964b5161b6334a8fe08a3b0b2db2c181c7f843abe2d824948c
|
||||
|
||||
@@ -1 +1 @@
|
||||
{"documents":{"C:\\Users\\steen\\Desktop\\Alvin\\ict-algemeen-opdrachten\\*":"https://raw.githubusercontent.com/Alvin-Zilverstand/ict-algemeen-opdrachten/6ad601307de15bf7ac384a00ca81c36ccccc42ab/*"}}
|
||||
{"documents":{"C:\\Users\\steen\\Desktop\\Alvin\\ict-algemeen-opdrachten\\*":"https://raw.githubusercontent.com/Alvin-Zilverstand/ict-algemeen-opdrachten/718626c83cf3b2aed34405e3da07ce10cc28e673/*"}}
|
||||
@@ -1,11 +1,11 @@
|
||||
{
|
||||
"version": 3,
|
||||
"targets": {
|
||||
"net9.0": {}
|
||||
"net6.0-windows7.0": {}
|
||||
},
|
||||
"libraries": {},
|
||||
"projectFileDependencyGroups": {
|
||||
"net9.0": []
|
||||
"net6.0-windows7.0": []
|
||||
},
|
||||
"packageFolders": {
|
||||
"C:\\Users\\steen\\.nuget\\packages\\": {},
|
||||
@@ -28,14 +28,14 @@
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config"
|
||||
],
|
||||
"originalTargetFrameworks": [
|
||||
"net9.0"
|
||||
"net6.0-windows"
|
||||
],
|
||||
"sources": {
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"net9.0": {
|
||||
"targetAlias": "net9.0",
|
||||
"net6.0-windows7.0": {
|
||||
"targetAlias": "net6.0-windows",
|
||||
"projectReferences": {}
|
||||
}
|
||||
},
|
||||
@@ -52,8 +52,8 @@
|
||||
"SdkAnalysisLevel": "9.0.100"
|
||||
},
|
||||
"frameworks": {
|
||||
"net9.0": {
|
||||
"targetAlias": "net9.0",
|
||||
"net6.0-windows7.0": {
|
||||
"targetAlias": "net6.0-windows",
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
@@ -65,12 +65,33 @@
|
||||
],
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"downloadDependencies": [
|
||||
{
|
||||
"name": "Microsoft.AspNetCore.App.Ref",
|
||||
"version": "[6.0.36, 6.0.36]"
|
||||
},
|
||||
{
|
||||
"name": "Microsoft.NETCore.App.Host.win-x64",
|
||||
"version": "[6.0.36, 6.0.36]"
|
||||
},
|
||||
{
|
||||
"name": "Microsoft.NETCore.App.Ref",
|
||||
"version": "[6.0.36, 6.0.36]"
|
||||
},
|
||||
{
|
||||
"name": "Microsoft.WindowsDesktop.App.Ref",
|
||||
"version": "[6.0.36, 6.0.36]"
|
||||
}
|
||||
],
|
||||
"frameworkReferences": {
|
||||
"Microsoft.NETCore.App": {
|
||||
"privateAssets": "all"
|
||||
},
|
||||
"Microsoft.WindowsDesktop.App.WindowsForms": {
|
||||
"privateAssets": "none"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.102/PortableRuntimeIdentifierGraph.json"
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.102\\RuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,8 +1,13 @@
|
||||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "NHnnkwFtkMM=",
|
||||
"dgSpecHash": "V/2eszA1eXk=",
|
||||
"success": true,
|
||||
"projectFilePath": "C:\\Users\\steen\\Desktop\\Alvin\\ict-algemeen-opdrachten\\Csharp\\Bankrekening\\Bankrekening.csproj",
|
||||
"expectedPackageFiles": [],
|
||||
"expectedPackageFiles": [
|
||||
"C:\\Users\\steen\\.nuget\\packages\\microsoft.netcore.app.ref\\6.0.36\\microsoft.netcore.app.ref.6.0.36.nupkg.sha512",
|
||||
"C:\\Users\\steen\\.nuget\\packages\\microsoft.windowsdesktop.app.ref\\6.0.36\\microsoft.windowsdesktop.app.ref.6.0.36.nupkg.sha512",
|
||||
"C:\\Users\\steen\\.nuget\\packages\\microsoft.aspnetcore.app.ref\\6.0.36\\microsoft.aspnetcore.app.ref.6.0.36.nupkg.sha512",
|
||||
"C:\\Users\\steen\\.nuget\\packages\\microsoft.netcore.app.host.win-x64\\6.0.36\\microsoft.netcore.app.host.win-x64.6.0.36.nupkg.sha512"
|
||||
],
|
||||
"logs": []
|
||||
}
|
||||
Reference in New Issue
Block a user