mirror of
https://github.com/Alvin-Zilverstand/ict-algemeen-opdrachten.git
synced 2026-03-06 11:06:59 +01:00
Initialize Bankrekening project with .NET 9.0 framework and necessary configuration files
This commit is contained in:
10
Csharp/Bankrekening/Bankrekening.csproj
Normal file
10
Csharp/Bankrekening/Bankrekening.csproj
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<OutputType>Exe</OutputType>
|
||||||
|
<TargetFramework>net9.0</TargetFramework>
|
||||||
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
|
<Nullable>enable</Nullable>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
</Project>
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
public class Bankrekening
|
public class Bankrekening
|
||||||
@@ -58,7 +58,7 @@ public class Bankrekening
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public class Program
|
public partial class Program
|
||||||
{
|
{
|
||||||
public static void Main(string[] args)
|
public static void Main(string[] args)
|
||||||
{
|
{
|
||||||
23
Csharp/Bankrekening/bin/Debug/net9.0/Bankrekening.deps.json
Normal file
23
Csharp/Bankrekening/bin/Debug/net9.0/Bankrekening.deps.json
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
{
|
||||||
|
"runtimeTarget": {
|
||||||
|
"name": ".NETCoreApp,Version=v9.0",
|
||||||
|
"signature": ""
|
||||||
|
},
|
||||||
|
"compilationOptions": {},
|
||||||
|
"targets": {
|
||||||
|
".NETCoreApp,Version=v9.0": {
|
||||||
|
"Bankrekening/1.0.0": {
|
||||||
|
"runtime": {
|
||||||
|
"Bankrekening.dll": {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"libraries": {
|
||||||
|
"Bankrekening/1.0.0": {
|
||||||
|
"type": "project",
|
||||||
|
"serviceable": false,
|
||||||
|
"sha512": ""
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
BIN
Csharp/Bankrekening/bin/Debug/net9.0/Bankrekening.dll
Normal file
BIN
Csharp/Bankrekening/bin/Debug/net9.0/Bankrekening.dll
Normal file
Binary file not shown.
BIN
Csharp/Bankrekening/bin/Debug/net9.0/Bankrekening.exe
Normal file
BIN
Csharp/Bankrekening/bin/Debug/net9.0/Bankrekening.exe
Normal file
Binary file not shown.
BIN
Csharp/Bankrekening/bin/Debug/net9.0/Bankrekening.pdb
Normal file
BIN
Csharp/Bankrekening/bin/Debug/net9.0/Bankrekening.pdb
Normal file
Binary file not shown.
@@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"runtimeOptions": {
|
||||||
|
"tfm": "net9.0",
|
||||||
|
"framework": {
|
||||||
|
"name": "Microsoft.NETCore.App",
|
||||||
|
"version": "9.0.0"
|
||||||
|
},
|
||||||
|
"configProperties": {
|
||||||
|
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,71 @@
|
|||||||
|
{
|
||||||
|
"format": 1,
|
||||||
|
"restore": {
|
||||||
|
"C:\\Users\\steen\\Desktop\\Alvin\\ict-algemeen-opdrachten\\Csharp\\Bankrekening\\Bankrekening.csproj": {}
|
||||||
|
},
|
||||||
|
"projects": {
|
||||||
|
"C:\\Users\\steen\\Desktop\\Alvin\\ict-algemeen-opdrachten\\Csharp\\Bankrekening\\Bankrekening.csproj": {
|
||||||
|
"version": "1.0.0",
|
||||||
|
"restore": {
|
||||||
|
"projectUniqueName": "C:\\Users\\steen\\Desktop\\Alvin\\ict-algemeen-opdrachten\\Csharp\\Bankrekening\\Bankrekening.csproj",
|
||||||
|
"projectName": "Bankrekening",
|
||||||
|
"projectPath": "C:\\Users\\steen\\Desktop\\Alvin\\ict-algemeen-opdrachten\\Csharp\\Bankrekening\\Bankrekening.csproj",
|
||||||
|
"packagesPath": "C:\\Users\\steen\\.nuget\\packages\\",
|
||||||
|
"outputPath": "C:\\Users\\steen\\Desktop\\Alvin\\ict-algemeen-opdrachten\\Csharp\\Bankrekening\\obj\\",
|
||||||
|
"projectStyle": "PackageReference",
|
||||||
|
"fallbackFolders": [
|
||||||
|
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||||
|
],
|
||||||
|
"configFilePaths": [
|
||||||
|
"C:\\Users\\steen\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||||
|
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config"
|
||||||
|
],
|
||||||
|
"originalTargetFrameworks": [
|
||||||
|
"net9.0"
|
||||||
|
],
|
||||||
|
"sources": {
|
||||||
|
"https://api.nuget.org/v3/index.json": {}
|
||||||
|
},
|
||||||
|
"frameworks": {
|
||||||
|
"net9.0": {
|
||||||
|
"targetAlias": "net9.0",
|
||||||
|
"projectReferences": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"warningProperties": {
|
||||||
|
"warnAsError": [
|
||||||
|
"NU1605"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"restoreAuditProperties": {
|
||||||
|
"enableAudit": "true",
|
||||||
|
"auditLevel": "low",
|
||||||
|
"auditMode": "direct"
|
||||||
|
},
|
||||||
|
"SdkAnalysisLevel": "9.0.100"
|
||||||
|
},
|
||||||
|
"frameworks": {
|
||||||
|
"net9.0": {
|
||||||
|
"targetAlias": "net9.0",
|
||||||
|
"imports": [
|
||||||
|
"net461",
|
||||||
|
"net462",
|
||||||
|
"net47",
|
||||||
|
"net471",
|
||||||
|
"net472",
|
||||||
|
"net48",
|
||||||
|
"net481"
|
||||||
|
],
|
||||||
|
"assetTargetFallback": true,
|
||||||
|
"warn": true,
|
||||||
|
"frameworkReferences": {
|
||||||
|
"Microsoft.NETCore.App": {
|
||||||
|
"privateAssets": "all"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.102/PortableRuntimeIdentifierGraph.json"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
16
Csharp/Bankrekening/obj/Bankrekening.csproj.nuget.g.props
Normal file
16
Csharp/Bankrekening/obj/Bankrekening.csproj.nuget.g.props
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
<?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\steen\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
|
||||||
|
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||||
|
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.12.2</NuGetToolVersion>
|
||||||
|
</PropertyGroup>
|
||||||
|
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
|
<SourceRoot Include="C:\Users\steen\.nuget\packages\" />
|
||||||
|
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
|
||||||
|
</ItemGroup>
|
||||||
|
</Project>
|
||||||
@@ -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" />
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
// <autogenerated />
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v9.0", FrameworkDisplayName = ".NET 9.0")]
|
||||||
@@ -0,0 +1,22 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <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+7a493a99c47295fadceb26cdfc0f7ee7ab17ab62")]
|
||||||
|
[assembly: System.Reflection.AssemblyProductAttribute("Bankrekening")]
|
||||||
|
[assembly: System.Reflection.AssemblyTitleAttribute("Bankrekening")]
|
||||||
|
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||||
|
|
||||||
|
// Generated by the MSBuild WriteCodeFragment class.
|
||||||
|
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
f1fc4b8260073b1b6ba87cc618aed806d5e6ccc1f7bc02af83324fba14875398
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
is_global = true
|
||||||
|
build_property.TargetFramework = net9.0
|
||||||
|
build_property.TargetPlatformMinVersion =
|
||||||
|
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.EffectiveAnalysisLevelStyle = 9.0
|
||||||
|
build_property.EnableCodeStyleSeverity =
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
// <auto-generated/>
|
||||||
|
global using global::System;
|
||||||
|
global using global::System.Collections.Generic;
|
||||||
|
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;
|
||||||
BIN
Csharp/Bankrekening/obj/Debug/net9.0/Bankrekening.assets.cache
Normal file
BIN
Csharp/Bankrekening/obj/Debug/net9.0/Bankrekening.assets.cache
Normal file
Binary file not shown.
@@ -0,0 +1 @@
|
|||||||
|
91f9cd7c595094476ecb7de4c0bee26df1da10f495641c76cdc009791fa827eb
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
C:\Users\steen\Desktop\Alvin\ict-algemeen-opdrachten\Csharp\Bankrekening\obj\Debug\net9.0\Bankrekening.GeneratedMSBuildEditorConfig.editorconfig
|
||||||
|
C:\Users\steen\Desktop\Alvin\ict-algemeen-opdrachten\Csharp\Bankrekening\obj\Debug\net9.0\Bankrekening.AssemblyInfoInputs.cache
|
||||||
|
C:\Users\steen\Desktop\Alvin\ict-algemeen-opdrachten\Csharp\Bankrekening\obj\Debug\net9.0\Bankrekening.AssemblyInfo.cs
|
||||||
|
C:\Users\steen\Desktop\Alvin\ict-algemeen-opdrachten\Csharp\Bankrekening\obj\Debug\net9.0\Bankrekening.csproj.CoreCompileInputs.cache
|
||||||
|
C:\Users\steen\Desktop\Alvin\ict-algemeen-opdrachten\Csharp\Bankrekening\obj\Debug\net9.0\Bankrekening.sourcelink.json
|
||||||
|
C:\Users\steen\Desktop\Alvin\ict-algemeen-opdrachten\Csharp\Bankrekening\bin\Debug\net9.0\Bankrekening.exe
|
||||||
|
C:\Users\steen\Desktop\Alvin\ict-algemeen-opdrachten\Csharp\Bankrekening\bin\Debug\net9.0\Bankrekening.deps.json
|
||||||
|
C:\Users\steen\Desktop\Alvin\ict-algemeen-opdrachten\Csharp\Bankrekening\bin\Debug\net9.0\Bankrekening.runtimeconfig.json
|
||||||
|
C:\Users\steen\Desktop\Alvin\ict-algemeen-opdrachten\Csharp\Bankrekening\bin\Debug\net9.0\Bankrekening.dll
|
||||||
|
C:\Users\steen\Desktop\Alvin\ict-algemeen-opdrachten\Csharp\Bankrekening\bin\Debug\net9.0\Bankrekening.pdb
|
||||||
|
C:\Users\steen\Desktop\Alvin\ict-algemeen-opdrachten\Csharp\Bankrekening\obj\Debug\net9.0\Bankrekening.dll
|
||||||
|
C:\Users\steen\Desktop\Alvin\ict-algemeen-opdrachten\Csharp\Bankrekening\obj\Debug\net9.0\refint\Bankrekening.dll
|
||||||
|
C:\Users\steen\Desktop\Alvin\ict-algemeen-opdrachten\Csharp\Bankrekening\obj\Debug\net9.0\Bankrekening.pdb
|
||||||
|
C:\Users\steen\Desktop\Alvin\ict-algemeen-opdrachten\Csharp\Bankrekening\obj\Debug\net9.0\Bankrekening.genruntimeconfig.cache
|
||||||
|
C:\Users\steen\Desktop\Alvin\ict-algemeen-opdrachten\Csharp\Bankrekening\obj\Debug\net9.0\ref\Bankrekening.dll
|
||||||
BIN
Csharp/Bankrekening/obj/Debug/net9.0/Bankrekening.dll
Normal file
BIN
Csharp/Bankrekening/obj/Debug/net9.0/Bankrekening.dll
Normal file
Binary file not shown.
@@ -0,0 +1 @@
|
|||||||
|
53b068ce9a4b58f73d83ed83022840ec62786d9ef4bf300d719b01e3b7aa5843
|
||||||
BIN
Csharp/Bankrekening/obj/Debug/net9.0/Bankrekening.pdb
Normal file
BIN
Csharp/Bankrekening/obj/Debug/net9.0/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/7a493a99c47295fadceb26cdfc0f7ee7ab17ab62/*"}}
|
||||||
BIN
Csharp/Bankrekening/obj/Debug/net9.0/apphost.exe
Normal file
BIN
Csharp/Bankrekening/obj/Debug/net9.0/apphost.exe
Normal file
Binary file not shown.
BIN
Csharp/Bankrekening/obj/Debug/net9.0/ref/Bankrekening.dll
Normal file
BIN
Csharp/Bankrekening/obj/Debug/net9.0/ref/Bankrekening.dll
Normal file
Binary file not shown.
BIN
Csharp/Bankrekening/obj/Debug/net9.0/refint/Bankrekening.dll
Normal file
BIN
Csharp/Bankrekening/obj/Debug/net9.0/refint/Bankrekening.dll
Normal file
Binary file not shown.
77
Csharp/Bankrekening/obj/project.assets.json
Normal file
77
Csharp/Bankrekening/obj/project.assets.json
Normal file
@@ -0,0 +1,77 @@
|
|||||||
|
{
|
||||||
|
"version": 3,
|
||||||
|
"targets": {
|
||||||
|
"net9.0": {}
|
||||||
|
},
|
||||||
|
"libraries": {},
|
||||||
|
"projectFileDependencyGroups": {
|
||||||
|
"net9.0": []
|
||||||
|
},
|
||||||
|
"packageFolders": {
|
||||||
|
"C:\\Users\\steen\\.nuget\\packages\\": {},
|
||||||
|
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
|
||||||
|
},
|
||||||
|
"project": {
|
||||||
|
"version": "1.0.0",
|
||||||
|
"restore": {
|
||||||
|
"projectUniqueName": "C:\\Users\\steen\\Desktop\\Alvin\\ict-algemeen-opdrachten\\Csharp\\Bankrekening\\Bankrekening.csproj",
|
||||||
|
"projectName": "Bankrekening",
|
||||||
|
"projectPath": "C:\\Users\\steen\\Desktop\\Alvin\\ict-algemeen-opdrachten\\Csharp\\Bankrekening\\Bankrekening.csproj",
|
||||||
|
"packagesPath": "C:\\Users\\steen\\.nuget\\packages\\",
|
||||||
|
"outputPath": "C:\\Users\\steen\\Desktop\\Alvin\\ict-algemeen-opdrachten\\Csharp\\Bankrekening\\obj\\",
|
||||||
|
"projectStyle": "PackageReference",
|
||||||
|
"fallbackFolders": [
|
||||||
|
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||||
|
],
|
||||||
|
"configFilePaths": [
|
||||||
|
"C:\\Users\\steen\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||||
|
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config"
|
||||||
|
],
|
||||||
|
"originalTargetFrameworks": [
|
||||||
|
"net9.0"
|
||||||
|
],
|
||||||
|
"sources": {
|
||||||
|
"https://api.nuget.org/v3/index.json": {}
|
||||||
|
},
|
||||||
|
"frameworks": {
|
||||||
|
"net9.0": {
|
||||||
|
"targetAlias": "net9.0",
|
||||||
|
"projectReferences": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"warningProperties": {
|
||||||
|
"warnAsError": [
|
||||||
|
"NU1605"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"restoreAuditProperties": {
|
||||||
|
"enableAudit": "true",
|
||||||
|
"auditLevel": "low",
|
||||||
|
"auditMode": "direct"
|
||||||
|
},
|
||||||
|
"SdkAnalysisLevel": "9.0.100"
|
||||||
|
},
|
||||||
|
"frameworks": {
|
||||||
|
"net9.0": {
|
||||||
|
"targetAlias": "net9.0",
|
||||||
|
"imports": [
|
||||||
|
"net461",
|
||||||
|
"net462",
|
||||||
|
"net47",
|
||||||
|
"net471",
|
||||||
|
"net472",
|
||||||
|
"net48",
|
||||||
|
"net481"
|
||||||
|
],
|
||||||
|
"assetTargetFallback": true,
|
||||||
|
"warn": true,
|
||||||
|
"frameworkReferences": {
|
||||||
|
"Microsoft.NETCore.App": {
|
||||||
|
"privateAssets": "all"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.102/PortableRuntimeIdentifierGraph.json"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
8
Csharp/Bankrekening/obj/project.nuget.cache
Normal file
8
Csharp/Bankrekening/obj/project.nuget.cache
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"version": 2,
|
||||||
|
"dgSpecHash": "NHnnkwFtkMM=",
|
||||||
|
"success": true,
|
||||||
|
"projectFilePath": "C:\\Users\\steen\\Desktop\\Alvin\\ict-algemeen-opdrachten\\Csharp\\Bankrekening\\Bankrekening.csproj",
|
||||||
|
"expectedPackageFiles": [],
|
||||||
|
"logs": []
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user