mirror of
https://github.com/Alvin-Zilverstand/ict-algemeen-opdrachten.git
synced 2026-03-06 02:57:05 +01:00
Update project configuration and cache files for .NET compatibility
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<OutputType>WinExe</OutputType>
|
<OutputType>WinExe</OutputType>
|
||||||
@@ -7,6 +7,7 @@
|
|||||||
<Nullable>enable</Nullable>
|
<Nullable>enable</Nullable>
|
||||||
<UseWindowsForms>true</UseWindowsForms>
|
<UseWindowsForms>true</UseWindowsForms>
|
||||||
<LangVersion>10.0</LangVersion>
|
<LangVersion>10.0</LangVersion>
|
||||||
|
<UseWPF>false</UseWPF>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|||||||
@@ -175,7 +175,7 @@ public class MainForm : Form
|
|||||||
BackColor = Color.White;
|
BackColor = Color.White;
|
||||||
}
|
}
|
||||||
|
|
||||||
private void StortenButton_Click(object sender, EventArgs e)
|
private void StortenButton_Click(object? sender, EventArgs e)
|
||||||
{
|
{
|
||||||
// Verwerk de storting
|
// Verwerk de storting
|
||||||
try
|
try
|
||||||
@@ -191,7 +191,7 @@ public class MainForm : Form
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void OpnemenButton_Click(object sender, EventArgs e)
|
private void OpnemenButton_Click(object? sender, EventArgs e)
|
||||||
{
|
{
|
||||||
// Verwerk de opname
|
// Verwerk de opname
|
||||||
try
|
try
|
||||||
@@ -207,7 +207,7 @@ public class MainForm : Form
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void TransactieGeschiedenisButton_Click(object sender, EventArgs e)
|
private void TransactieGeschiedenisButton_Click(object? sender, EventArgs e)
|
||||||
{
|
{
|
||||||
// Toon de transactiegeschiedenis
|
// Toon de transactiegeschiedenis
|
||||||
var transactieGeschiedenis = mijnRekening.GetTransactieGeschiedenis();
|
var transactieGeschiedenis = mijnRekening.GetTransactieGeschiedenis();
|
||||||
@@ -224,19 +224,9 @@ public class MainForm : Form
|
|||||||
|
|
||||||
class Program
|
class Program
|
||||||
{
|
{
|
||||||
|
[STAThread]
|
||||||
static void Main()
|
static void Main()
|
||||||
{
|
{
|
||||||
// Start de applicatie
|
|
||||||
var mijnRekening = new Bankrekening("NL01BANK0123456789", 1000);
|
|
||||||
mijnRekening.Storten(100.00m, "Initial deposit");
|
|
||||||
mijnRekening.Opnemen(50.00m, "ATM withdrawal");
|
|
||||||
|
|
||||||
Console.WriteLine("Transactiegeschiedenis:");
|
|
||||||
foreach (var transactie in mijnRekening.GetTransactieGeschiedenis())
|
|
||||||
{
|
|
||||||
Console.WriteLine($"{transactie.Datum}: {transactie.Beschrijving} - {transactie.Bedrag:C}");
|
|
||||||
}
|
|
||||||
|
|
||||||
Application.EnableVisualStyles();
|
Application.EnableVisualStyles();
|
||||||
Application.SetCompatibleTextRenderingDefault(false);
|
Application.SetCompatibleTextRenderingDefault(false);
|
||||||
Application.Run(new MainForm());
|
Application.Run(new MainForm());
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -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+fc58a89ec89837431caf472b90b944f24ed42765")]
|
||||||
|
[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 @@
|
|||||||
|
911926f4559b706f6ae8debf2d8b67112fbdfe76787fcac67795bc352a624760
|
||||||
@@ -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\alvin\Desktop\coding\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 @@
|
|||||||
|
8b5ecb13bf6db4d82cc03a9d9eb7fec95eb0a8998de333d594ff4cd198421d96
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
C:\Users\alvin\Desktop\coding\ict-algemeen-opdrachten\Csharp\Bankrekening\bin\Debug\net6.0-windows\Bankrekening.exe
|
||||||
|
C:\Users\alvin\Desktop\coding\ict-algemeen-opdrachten\Csharp\Bankrekening\bin\Debug\net6.0-windows\Bankrekening.deps.json
|
||||||
|
C:\Users\alvin\Desktop\coding\ict-algemeen-opdrachten\Csharp\Bankrekening\bin\Debug\net6.0-windows\Bankrekening.runtimeconfig.json
|
||||||
|
C:\Users\alvin\Desktop\coding\ict-algemeen-opdrachten\Csharp\Bankrekening\bin\Debug\net6.0-windows\Bankrekening.dll
|
||||||
|
C:\Users\alvin\Desktop\coding\ict-algemeen-opdrachten\Csharp\Bankrekening\bin\Debug\net6.0-windows\Bankrekening.pdb
|
||||||
|
C:\Users\alvin\Desktop\coding\ict-algemeen-opdrachten\Csharp\Bankrekening\obj\Debug\net6.0-windows\Bankrekening.GeneratedMSBuildEditorConfig.editorconfig
|
||||||
|
C:\Users\alvin\Desktop\coding\ict-algemeen-opdrachten\Csharp\Bankrekening\obj\Debug\net6.0-windows\Bankrekening.AssemblyInfoInputs.cache
|
||||||
|
C:\Users\alvin\Desktop\coding\ict-algemeen-opdrachten\Csharp\Bankrekening\obj\Debug\net6.0-windows\Bankrekening.AssemblyInfo.cs
|
||||||
|
C:\Users\alvin\Desktop\coding\ict-algemeen-opdrachten\Csharp\Bankrekening\obj\Debug\net6.0-windows\Bankrekening.csproj.CoreCompileInputs.cache
|
||||||
|
C:\Users\alvin\Desktop\coding\ict-algemeen-opdrachten\Csharp\Bankrekening\obj\Debug\net6.0-windows\Bankrekening.sourcelink.json
|
||||||
|
C:\Users\alvin\Desktop\coding\ict-algemeen-opdrachten\Csharp\Bankrekening\obj\Debug\net6.0-windows\Bankrekening.dll
|
||||||
|
C:\Users\alvin\Desktop\coding\ict-algemeen-opdrachten\Csharp\Bankrekening\obj\Debug\net6.0-windows\refint\Bankrekening.dll
|
||||||
|
C:\Users\alvin\Desktop\coding\ict-algemeen-opdrachten\Csharp\Bankrekening\obj\Debug\net6.0-windows\Bankrekening.pdb
|
||||||
|
C:\Users\alvin\Desktop\coding\ict-algemeen-opdrachten\Csharp\Bankrekening\obj\Debug\net6.0-windows\Bankrekening.genruntimeconfig.cache
|
||||||
|
C:\Users\alvin\Desktop\coding\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 @@
|
|||||||
|
07c17926afff23530cb3d76e5b4a8dcfa8872b07a0727e41e4bf4ae1c64cbabd
|
||||||
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\\alvin\\Desktop\\coding\\ict-algemeen-opdrachten\\*":"https://raw.githubusercontent.com/Alvin-Zilverstand/ict-algemeen-opdrachten/fc58a89ec89837431caf472b90b944f24ed42765/*"}}
|
||||||
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.AssemblyCompanyAttribute("Bankrekening")]
|
||||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+d2c987a695a1213bc244b7e1d2841a7a342ef2ce")]
|
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+fc58a89ec89837431caf472b90b944f24ed42765")]
|
||||||
[assembly: System.Reflection.AssemblyProductAttribute("Bankrekening")]
|
[assembly: System.Reflection.AssemblyProductAttribute("Bankrekening")]
|
||||||
[assembly: System.Reflection.AssemblyTitleAttribute("Bankrekening")]
|
[assembly: System.Reflection.AssemblyTitleAttribute("Bankrekening")]
|
||||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
96c31aa9f9f1742338ce97712ee5cba28f8428e98791084b91c39596a068af4b
|
911926f4559b706f6ae8debf2d8b67112fbdfe76787fcac67795bc352a624760
|
||||||
|
|||||||
@@ -13,3 +13,18 @@ C:\Users\steen\Desktop\Alvin\ict-algemeen-opdrachten\Csharp\Bankrekening\obj\Deb
|
|||||||
C:\Users\steen\Desktop\Alvin\ict-algemeen-opdrachten\Csharp\Bankrekening\obj\Debug\net9.0-windows\Bankrekening.pdb
|
C:\Users\steen\Desktop\Alvin\ict-algemeen-opdrachten\Csharp\Bankrekening\obj\Debug\net9.0-windows\Bankrekening.pdb
|
||||||
C:\Users\steen\Desktop\Alvin\ict-algemeen-opdrachten\Csharp\Bankrekening\obj\Debug\net9.0-windows\Bankrekening.genruntimeconfig.cache
|
C:\Users\steen\Desktop\Alvin\ict-algemeen-opdrachten\Csharp\Bankrekening\obj\Debug\net9.0-windows\Bankrekening.genruntimeconfig.cache
|
||||||
C:\Users\steen\Desktop\Alvin\ict-algemeen-opdrachten\Csharp\Bankrekening\obj\Debug\net9.0-windows\ref\Bankrekening.dll
|
C:\Users\steen\Desktop\Alvin\ict-algemeen-opdrachten\Csharp\Bankrekening\obj\Debug\net9.0-windows\ref\Bankrekening.dll
|
||||||
|
C:\Users\alvin\Desktop\coding\ict-algemeen-opdrachten\Csharp\Bankrekening\bin\Debug\net9.0-windows\Bankrekening.exe
|
||||||
|
C:\Users\alvin\Desktop\coding\ict-algemeen-opdrachten\Csharp\Bankrekening\bin\Debug\net9.0-windows\Bankrekening.deps.json
|
||||||
|
C:\Users\alvin\Desktop\coding\ict-algemeen-opdrachten\Csharp\Bankrekening\bin\Debug\net9.0-windows\Bankrekening.runtimeconfig.json
|
||||||
|
C:\Users\alvin\Desktop\coding\ict-algemeen-opdrachten\Csharp\Bankrekening\bin\Debug\net9.0-windows\Bankrekening.dll
|
||||||
|
C:\Users\alvin\Desktop\coding\ict-algemeen-opdrachten\Csharp\Bankrekening\bin\Debug\net9.0-windows\Bankrekening.pdb
|
||||||
|
C:\Users\alvin\Desktop\coding\ict-algemeen-opdrachten\Csharp\Bankrekening\obj\Debug\net9.0-windows\Bankrekening.GeneratedMSBuildEditorConfig.editorconfig
|
||||||
|
C:\Users\alvin\Desktop\coding\ict-algemeen-opdrachten\Csharp\Bankrekening\obj\Debug\net9.0-windows\Bankrekening.AssemblyInfoInputs.cache
|
||||||
|
C:\Users\alvin\Desktop\coding\ict-algemeen-opdrachten\Csharp\Bankrekening\obj\Debug\net9.0-windows\Bankrekening.AssemblyInfo.cs
|
||||||
|
C:\Users\alvin\Desktop\coding\ict-algemeen-opdrachten\Csharp\Bankrekening\obj\Debug\net9.0-windows\Bankrekening.csproj.CoreCompileInputs.cache
|
||||||
|
C:\Users\alvin\Desktop\coding\ict-algemeen-opdrachten\Csharp\Bankrekening\obj\Debug\net9.0-windows\Bankrekening.sourcelink.json
|
||||||
|
C:\Users\alvin\Desktop\coding\ict-algemeen-opdrachten\Csharp\Bankrekening\obj\Debug\net9.0-windows\Bankrekening.dll
|
||||||
|
C:\Users\alvin\Desktop\coding\ict-algemeen-opdrachten\Csharp\Bankrekening\obj\Debug\net9.0-windows\refint\Bankrekening.dll
|
||||||
|
C:\Users\alvin\Desktop\coding\ict-algemeen-opdrachten\Csharp\Bankrekening\obj\Debug\net9.0-windows\Bankrekening.pdb
|
||||||
|
C:\Users\alvin\Desktop\coding\ict-algemeen-opdrachten\Csharp\Bankrekening\obj\Debug\net9.0-windows\Bankrekening.genruntimeconfig.cache
|
||||||
|
C:\Users\alvin\Desktop\coding\ict-algemeen-opdrachten\Csharp\Bankrekening\obj\Debug\net9.0-windows\ref\Bankrekening.dll
|
||||||
|
|||||||
Binary file not shown.
@@ -1 +1 @@
|
|||||||
706ffb25adfd668d7cf3ab8a8d4724c97626c5bd3c4d113b30f961dcf6a3d4d1
|
32a769e5e16259d6731dfc846cbe48efee0cf1a17f9227149dc36cc1ea0ed144
|
||||||
|
|||||||
Binary file not shown.
@@ -1 +1 @@
|
|||||||
{"documents":{"C:\\Users\\steen\\Desktop\\Alvin\\ict-algemeen-opdrachten\\*":"https://raw.githubusercontent.com/Alvin-Zilverstand/ict-algemeen-opdrachten/03c0a8a50ef417539e165427745cdb9370cfeddd/*"}}
|
{"documents":{"C:\\Users\\alvin\\Desktop\\coding\\ict-algemeen-opdrachten\\*":"https://raw.githubusercontent.com/Alvin-Zilverstand/ict-algemeen-opdrachten/fc58a89ec89837431caf472b90b944f24ed42765/*"}}
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -13,7 +13,7 @@ using System.Reflection;
|
|||||||
[assembly: System.Reflection.AssemblyCompanyAttribute("Calc")]
|
[assembly: System.Reflection.AssemblyCompanyAttribute("Calc")]
|
||||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+d2c987a695a1213bc244b7e1d2841a7a342ef2ce")]
|
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+fc58a89ec89837431caf472b90b944f24ed42765")]
|
||||||
[assembly: System.Reflection.AssemblyProductAttribute("Calc")]
|
[assembly: System.Reflection.AssemblyProductAttribute("Calc")]
|
||||||
[assembly: System.Reflection.AssemblyTitleAttribute("Calc")]
|
[assembly: System.Reflection.AssemblyTitleAttribute("Calc")]
|
||||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
4407f1465d47e62be2a7b1840a4750bc484ca5bdaf5df9d0194e8989c3dbe6e1
|
d0a2d838b900bb49dc8ffc08aafe75ab3ca8df6d9aa64c04f7eabdb1e3318b28
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ using System.Reflection;
|
|||||||
[assembly: System.Reflection.AssemblyCompanyAttribute("Gokspel")]
|
[assembly: System.Reflection.AssemblyCompanyAttribute("Gokspel")]
|
||||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+d2c987a695a1213bc244b7e1d2841a7a342ef2ce")]
|
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+fc58a89ec89837431caf472b90b944f24ed42765")]
|
||||||
[assembly: System.Reflection.AssemblyProductAttribute("Gokspel")]
|
[assembly: System.Reflection.AssemblyProductAttribute("Gokspel")]
|
||||||
[assembly: System.Reflection.AssemblyTitleAttribute("Gokspel")]
|
[assembly: System.Reflection.AssemblyTitleAttribute("Gokspel")]
|
||||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
bb5c897d48a193c7a30f7fb678df4653f37e48f680ad4ea85036d3b05bb29d6b
|
f6ef6d0b93c219de7ed69735687d43f6ec5b87415dcc94432d93b8f04a3beeb1
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ using System.Reflection;
|
|||||||
[assembly: System.Reflection.AssemblyCompanyAttribute("woordenboek")]
|
[assembly: System.Reflection.AssemblyCompanyAttribute("woordenboek")]
|
||||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+d2c987a695a1213bc244b7e1d2841a7a342ef2ce")]
|
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+fc58a89ec89837431caf472b90b944f24ed42765")]
|
||||||
[assembly: System.Reflection.AssemblyProductAttribute("woordenboek")]
|
[assembly: System.Reflection.AssemblyProductAttribute("woordenboek")]
|
||||||
[assembly: System.Reflection.AssemblyTitleAttribute("woordenboek")]
|
[assembly: System.Reflection.AssemblyTitleAttribute("woordenboek")]
|
||||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
f3555b001f2f15b52b1787418aef98050f204f1e129d694baf679dc8e9ef607a
|
83ec29d5910b0b97ad21ff47f8c4233659e7ebafe9b98d9d6e388c32cb2a67d5
|
||||||
|
|||||||
50
ict-algemeen-opdrachten.sln
Normal file
50
ict-algemeen-opdrachten.sln
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||||
|
# Visual Studio Version 17
|
||||||
|
VisualStudioVersion = 17.5.2.0
|
||||||
|
MinimumVisualStudioVersion = 10.0.40219.1
|
||||||
|
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Csharp", "Csharp", "{B41BF331-FCCB-2ADF-CDB6-767964B34647}"
|
||||||
|
EndProject
|
||||||
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Bankrekening", "Csharp\Bankrekening\Bankrekening.csproj", "{628CDE68-B965-C22E-AD59-6899891FF23C}"
|
||||||
|
EndProject
|
||||||
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Calc", "Csharp\Calc\Calc.csproj", "{E1D15EB0-3DE6-3CB3-9A25-16BC01B5D8A7}"
|
||||||
|
EndProject
|
||||||
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Gokspel", "Csharp\Gokspel\Gokspel.csproj", "{7FF673A9-0BD8-1B4E-7630-AB6738058171}"
|
||||||
|
EndProject
|
||||||
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "woordenboek", "Csharp\Woordenboek\woordenboek.csproj", "{DCF9BEEB-038B-0951-8810-6FDF195D83C2}"
|
||||||
|
EndProject
|
||||||
|
Global
|
||||||
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
|
Debug|Any CPU = Debug|Any CPU
|
||||||
|
Release|Any CPU = Release|Any CPU
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||||
|
{628CDE68-B965-C22E-AD59-6899891FF23C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{628CDE68-B965-C22E-AD59-6899891FF23C}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{628CDE68-B965-C22E-AD59-6899891FF23C}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{628CDE68-B965-C22E-AD59-6899891FF23C}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{E1D15EB0-3DE6-3CB3-9A25-16BC01B5D8A7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{E1D15EB0-3DE6-3CB3-9A25-16BC01B5D8A7}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{E1D15EB0-3DE6-3CB3-9A25-16BC01B5D8A7}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{E1D15EB0-3DE6-3CB3-9A25-16BC01B5D8A7}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{7FF673A9-0BD8-1B4E-7630-AB6738058171}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{7FF673A9-0BD8-1B4E-7630-AB6738058171}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{7FF673A9-0BD8-1B4E-7630-AB6738058171}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{7FF673A9-0BD8-1B4E-7630-AB6738058171}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{DCF9BEEB-038B-0951-8810-6FDF195D83C2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{DCF9BEEB-038B-0951-8810-6FDF195D83C2}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{DCF9BEEB-038B-0951-8810-6FDF195D83C2}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{DCF9BEEB-038B-0951-8810-6FDF195D83C2}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
|
HideSolutionNode = FALSE
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(NestedProjects) = preSolution
|
||||||
|
{628CDE68-B965-C22E-AD59-6899891FF23C} = {B41BF331-FCCB-2ADF-CDB6-767964B34647}
|
||||||
|
{E1D15EB0-3DE6-3CB3-9A25-16BC01B5D8A7} = {B41BF331-FCCB-2ADF-CDB6-767964B34647}
|
||||||
|
{7FF673A9-0BD8-1B4E-7630-AB6738058171} = {B41BF331-FCCB-2ADF-CDB6-767964B34647}
|
||||||
|
{DCF9BEEB-038B-0951-8810-6FDF195D83C2} = {B41BF331-FCCB-2ADF-CDB6-767964B34647}
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||||
|
SolutionGuid = {2277D295-3EF7-4F18-AA31-F2C5025CC16C}
|
||||||
|
EndGlobalSection
|
||||||
|
EndGlobal
|
||||||
Reference in New Issue
Block a user