Initialize C# project for .NET 9.0 with basic calculator functionality

This commit is contained in:
vista-man
2025-01-27 20:12:53 +01:00
parent 0115f24bd3
commit bbcbef3d2f
29 changed files with 358 additions and 63 deletions

View File

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

View File

@@ -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("Calc")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+0115f24bd329294b808413765fcc763d93bc37e4")]
[assembly: System.Reflection.AssemblyProductAttribute("Calc")]
[assembly: System.Reflection.AssemblyTitleAttribute("Calc")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Generated by the MSBuild WriteCodeFragment class.

View File

@@ -0,0 +1 @@
276b6d2fabd17a789d893766bd5f14d8a26bf2628a8f4edbd75b2e58615ec557

View File

@@ -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 = Calc
build_property.ProjectDir = C:\Users\steen\Desktop\Alvin\ict-algemeen-opdrachten\Csharp\Calc\
build_property.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop =
build_property.EffectiveAnalysisLevelStyle = 9.0
build_property.EnableCodeStyleSeverity =

View File

@@ -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;

Binary file not shown.

View File

@@ -0,0 +1 @@
21ebf20558f3a8283623941054716441fde654c370d1e96b36a0c9189e80a917

View File

@@ -0,0 +1,15 @@
C:\Users\steen\Desktop\Alvin\ict-algemeen-opdrachten\Csharp\Calc\bin\Debug\net9.0\Calc.exe
C:\Users\steen\Desktop\Alvin\ict-algemeen-opdrachten\Csharp\Calc\bin\Debug\net9.0\Calc.deps.json
C:\Users\steen\Desktop\Alvin\ict-algemeen-opdrachten\Csharp\Calc\bin\Debug\net9.0\Calc.runtimeconfig.json
C:\Users\steen\Desktop\Alvin\ict-algemeen-opdrachten\Csharp\Calc\bin\Debug\net9.0\Calc.dll
C:\Users\steen\Desktop\Alvin\ict-algemeen-opdrachten\Csharp\Calc\bin\Debug\net9.0\Calc.pdb
C:\Users\steen\Desktop\Alvin\ict-algemeen-opdrachten\Csharp\Calc\obj\Debug\net9.0\Calc.GeneratedMSBuildEditorConfig.editorconfig
C:\Users\steen\Desktop\Alvin\ict-algemeen-opdrachten\Csharp\Calc\obj\Debug\net9.0\Calc.AssemblyInfoInputs.cache
C:\Users\steen\Desktop\Alvin\ict-algemeen-opdrachten\Csharp\Calc\obj\Debug\net9.0\Calc.AssemblyInfo.cs
C:\Users\steen\Desktop\Alvin\ict-algemeen-opdrachten\Csharp\Calc\obj\Debug\net9.0\Calc.csproj.CoreCompileInputs.cache
C:\Users\steen\Desktop\Alvin\ict-algemeen-opdrachten\Csharp\Calc\obj\Debug\net9.0\Calc.sourcelink.json
C:\Users\steen\Desktop\Alvin\ict-algemeen-opdrachten\Csharp\Calc\obj\Debug\net9.0\Calc.dll
C:\Users\steen\Desktop\Alvin\ict-algemeen-opdrachten\Csharp\Calc\obj\Debug\net9.0\refint\Calc.dll
C:\Users\steen\Desktop\Alvin\ict-algemeen-opdrachten\Csharp\Calc\obj\Debug\net9.0\Calc.pdb
C:\Users\steen\Desktop\Alvin\ict-algemeen-opdrachten\Csharp\Calc\obj\Debug\net9.0\Calc.genruntimeconfig.cache
C:\Users\steen\Desktop\Alvin\ict-algemeen-opdrachten\Csharp\Calc\obj\Debug\net9.0\ref\Calc.dll

Binary file not shown.

View File

@@ -0,0 +1 @@
82eecd7a73df33983d8541ae507d20861bfad7cf0473104c027e197a87f8fb70

Binary file not shown.

View File

@@ -0,0 +1 @@
{"documents":{"C:\\Users\\steen\\Desktop\\Alvin\\ict-algemeen-opdrachten\\*":"https://raw.githubusercontent.com/Alvin-Zilverstand/ict-algemeen-opdrachten/0115f24bd329294b808413765fcc763d93bc37e4/*"}}

Binary file not shown.

Binary file not shown.

Binary file not shown.