theme changed
This commit is contained in:
13
labs/lab2/BankAccount/.idea/.idea.BankAccount.dir/.idea/.gitignore
generated
vendored
Normal file
13
labs/lab2/BankAccount/.idea/.idea.BankAccount.dir/.idea/.gitignore
generated
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
# Default ignored files
|
||||
/shelf/
|
||||
/workspace.xml
|
||||
# Rider ignored files
|
||||
/modules.xml
|
||||
/contentModel.xml
|
||||
/projectSettingsUpdater.xml
|
||||
/.idea.BankAccount.iml
|
||||
# Editor-based HTTP Client requests
|
||||
/httpRequests/
|
||||
# Datasource local storage ignored files
|
||||
/dataSources/
|
||||
/dataSources.local.xml
|
||||
4
labs/lab2/BankAccount/.idea/.idea.BankAccount.dir/.idea/encodings.xml
generated
Normal file
4
labs/lab2/BankAccount/.idea/.idea.BankAccount.dir/.idea/encodings.xml
generated
Normal file
@@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="Encoding" addBOMForNewFiles="with BOM under Windows, with no BOM otherwise" />
|
||||
</project>
|
||||
8
labs/lab2/BankAccount/.idea/.idea.BankAccount.dir/.idea/indexLayout.xml
generated
Normal file
8
labs/lab2/BankAccount/.idea/.idea.BankAccount.dir/.idea/indexLayout.xml
generated
Normal file
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="UserContentModel">
|
||||
<attachedFolders />
|
||||
<explicitIncludes />
|
||||
<explicitExcludes />
|
||||
</component>
|
||||
</project>
|
||||
6
labs/lab2/BankAccount/.idea/.idea.BankAccount.dir/.idea/vcs.xml
generated
Normal file
6
labs/lab2/BankAccount/.idea/.idea.BankAccount.dir/.idea/vcs.xml
generated
Normal file
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="VcsDirectoryMappings">
|
||||
<mapping directory="$PROJECT_DIR$/../../.." vcs="Git" />
|
||||
</component>
|
||||
</project>
|
||||
10
labs/lab2/BankAccount/BankAccount.csproj
Normal file
10
labs/lab2/BankAccount/BankAccount.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>
|
||||
16
labs/lab2/BankAccount/Enum.cs
Normal file
16
labs/lab2/BankAccount/Enum.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
public enum AccountType { Checking, Deposit }
|
||||
|
||||
public class Enum
|
||||
{
|
||||
public static void Main(string[] args)
|
||||
{
|
||||
AccountType goldAccount;
|
||||
AccountType platinumAccount;
|
||||
|
||||
goldAccount = AccountType.Checking;
|
||||
platinumAccount = AccountType.Deposit;
|
||||
|
||||
Console.WriteLine("The Customer Account Type is {0}", goldAccount);
|
||||
Console.WriteLine("The Customer Account Type is {0}", platinumAccount);
|
||||
}
|
||||
}
|
||||
BIN
labs/lab2/BankAccount/bin/Debug/net9.0/BankAccount
Executable file
BIN
labs/lab2/BankAccount/bin/Debug/net9.0/BankAccount
Executable file
Binary file not shown.
23
labs/lab2/BankAccount/bin/Debug/net9.0/BankAccount.deps.json
Normal file
23
labs/lab2/BankAccount/bin/Debug/net9.0/BankAccount.deps.json
Normal file
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"runtimeTarget": {
|
||||
"name": ".NETCoreApp,Version=v9.0",
|
||||
"signature": ""
|
||||
},
|
||||
"compilationOptions": {},
|
||||
"targets": {
|
||||
".NETCoreApp,Version=v9.0": {
|
||||
"BankAccount/1.0.0": {
|
||||
"runtime": {
|
||||
"BankAccount.dll": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"BankAccount/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
labs/lab2/BankAccount/bin/Debug/net9.0/BankAccount.dll
Normal file
BIN
labs/lab2/BankAccount/bin/Debug/net9.0/BankAccount.dll
Normal file
Binary file not shown.
BIN
labs/lab2/BankAccount/bin/Debug/net9.0/BankAccount.pdb
Normal file
BIN
labs/lab2/BankAccount/bin/Debug/net9.0/BankAccount.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,73 @@
|
||||
{
|
||||
"format": 1,
|
||||
"restore": {
|
||||
"/home/nik/oop/labs/lab2/BankAccount/BankAccount.csproj": {}
|
||||
},
|
||||
"projects": {
|
||||
"/home/nik/oop/labs/lab2/BankAccount/BankAccount.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "/home/nik/oop/labs/lab2/BankAccount/BankAccount.csproj",
|
||||
"projectName": "BankAccount",
|
||||
"projectPath": "/home/nik/oop/labs/lab2/BankAccount/BankAccount.csproj",
|
||||
"packagesPath": "/home/nik/.nuget/packages/",
|
||||
"outputPath": "/home/nik/oop/labs/lab2/BankAccount/obj/",
|
||||
"projectStyle": "PackageReference",
|
||||
"configFilePaths": [
|
||||
"/home/nik/.nuget/NuGet/NuGet.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,
|
||||
"downloadDependencies": [
|
||||
{
|
||||
"name": "Microsoft.AspNetCore.App.Ref",
|
||||
"version": "[9.0.9, 9.0.9]"
|
||||
}
|
||||
],
|
||||
"frameworkReferences": {
|
||||
"Microsoft.NETCore.App": {
|
||||
"privateAssets": "all"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/9.0.110/PortableRuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
15
labs/lab2/BankAccount/obj/BankAccount.csproj.nuget.g.props
Normal file
15
labs/lab2/BankAccount/obj/BankAccount.csproj.nuget.g.props
Normal 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)' == '' ">/home/nik/.nuget/packages/</NuGetPackageRoot>
|
||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/home/nik/.nuget/packages/</NuGetPackageFolders>
|
||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.12.4</NuGetToolVersion>
|
||||
</PropertyGroup>
|
||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<SourceRoot Include="/home/nik/.nuget/packages/" />
|
||||
</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("BankAccount")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+36606926b9d67f78c473de632eed3cf6c4ed12c7")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("BankAccount")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("BankAccount")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
// Generated by the MSBuild WriteCodeFragment class.
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
4867eff31ff80b84c57a524a0a6e749e8a0454aa752db5a876c3983b2cbadaee
|
||||
@@ -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 = BankAccount
|
||||
build_property.ProjectDir = /home/nik/oop/labs/lab2/BankAccount/
|
||||
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
labs/lab2/BankAccount/obj/Debug/net9.0/BankAccount.assets.cache
Normal file
BIN
labs/lab2/BankAccount/obj/Debug/net9.0/BankAccount.assets.cache
Normal file
Binary file not shown.
@@ -0,0 +1 @@
|
||||
2eb8d99d04da0c06ac51f6a1cc403f963d4b76d46a8c62b8760eb82d624567ea
|
||||
@@ -0,0 +1,14 @@
|
||||
/home/nik/oop/labs/lab2/BankAccount/bin/Debug/net9.0/BankAccount
|
||||
/home/nik/oop/labs/lab2/BankAccount/bin/Debug/net9.0/BankAccount.deps.json
|
||||
/home/nik/oop/labs/lab2/BankAccount/bin/Debug/net9.0/BankAccount.runtimeconfig.json
|
||||
/home/nik/oop/labs/lab2/BankAccount/bin/Debug/net9.0/BankAccount.dll
|
||||
/home/nik/oop/labs/lab2/BankAccount/bin/Debug/net9.0/BankAccount.pdb
|
||||
/home/nik/oop/labs/lab2/BankAccount/obj/Debug/net9.0/BankAccount.GeneratedMSBuildEditorConfig.editorconfig
|
||||
/home/nik/oop/labs/lab2/BankAccount/obj/Debug/net9.0/BankAccount.AssemblyInfoInputs.cache
|
||||
/home/nik/oop/labs/lab2/BankAccount/obj/Debug/net9.0/BankAccount.AssemblyInfo.cs
|
||||
/home/nik/oop/labs/lab2/BankAccount/obj/Debug/net9.0/BankAccount.csproj.CoreCompileInputs.cache
|
||||
/home/nik/oop/labs/lab2/BankAccount/obj/Debug/net9.0/BankAccount.dll
|
||||
/home/nik/oop/labs/lab2/BankAccount/obj/Debug/net9.0/refint/BankAccount.dll
|
||||
/home/nik/oop/labs/lab2/BankAccount/obj/Debug/net9.0/BankAccount.pdb
|
||||
/home/nik/oop/labs/lab2/BankAccount/obj/Debug/net9.0/BankAccount.genruntimeconfig.cache
|
||||
/home/nik/oop/labs/lab2/BankAccount/obj/Debug/net9.0/ref/BankAccount.dll
|
||||
BIN
labs/lab2/BankAccount/obj/Debug/net9.0/BankAccount.dll
Normal file
BIN
labs/lab2/BankAccount/obj/Debug/net9.0/BankAccount.dll
Normal file
Binary file not shown.
@@ -0,0 +1 @@
|
||||
d4e8dfe422bd02918055e12e3c30a4424b6c9dff76b38c963a27775688f7cb63
|
||||
BIN
labs/lab2/BankAccount/obj/Debug/net9.0/BankAccount.pdb
Normal file
BIN
labs/lab2/BankAccount/obj/Debug/net9.0/BankAccount.pdb
Normal file
Binary file not shown.
BIN
labs/lab2/BankAccount/obj/Debug/net9.0/apphost
Executable file
BIN
labs/lab2/BankAccount/obj/Debug/net9.0/apphost
Executable file
Binary file not shown.
BIN
labs/lab2/BankAccount/obj/Debug/net9.0/ref/BankAccount.dll
Normal file
BIN
labs/lab2/BankAccount/obj/Debug/net9.0/ref/BankAccount.dll
Normal file
Binary file not shown.
BIN
labs/lab2/BankAccount/obj/Debug/net9.0/refint/BankAccount.dll
Normal file
BIN
labs/lab2/BankAccount/obj/Debug/net9.0/refint/BankAccount.dll
Normal file
Binary file not shown.
78
labs/lab2/BankAccount/obj/project.assets.json
Normal file
78
labs/lab2/BankAccount/obj/project.assets.json
Normal file
@@ -0,0 +1,78 @@
|
||||
{
|
||||
"version": 3,
|
||||
"targets": {
|
||||
"net9.0": {}
|
||||
},
|
||||
"libraries": {},
|
||||
"projectFileDependencyGroups": {
|
||||
"net9.0": []
|
||||
},
|
||||
"packageFolders": {
|
||||
"/home/nik/.nuget/packages/": {}
|
||||
},
|
||||
"project": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "/home/nik/oop/labs/lab2/BankAccount/BankAccount.csproj",
|
||||
"projectName": "BankAccount",
|
||||
"projectPath": "/home/nik/oop/labs/lab2/BankAccount/BankAccount.csproj",
|
||||
"packagesPath": "/home/nik/.nuget/packages/",
|
||||
"outputPath": "/home/nik/oop/labs/lab2/BankAccount/obj/",
|
||||
"projectStyle": "PackageReference",
|
||||
"configFilePaths": [
|
||||
"/home/nik/.nuget/NuGet/NuGet.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,
|
||||
"downloadDependencies": [
|
||||
{
|
||||
"name": "Microsoft.AspNetCore.App.Ref",
|
||||
"version": "[9.0.9, 9.0.9]"
|
||||
}
|
||||
],
|
||||
"frameworkReferences": {
|
||||
"Microsoft.NETCore.App": {
|
||||
"privateAssets": "all"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/9.0.110/PortableRuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
10
labs/lab2/BankAccount/obj/project.nuget.cache
Normal file
10
labs/lab2/BankAccount/obj/project.nuget.cache
Normal file
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "RbJOLZTYaW0=",
|
||||
"success": true,
|
||||
"projectFilePath": "/home/nik/oop/labs/lab2/BankAccount/BankAccount.csproj",
|
||||
"expectedPackageFiles": [
|
||||
"/home/nik/.nuget/packages/microsoft.aspnetcore.app.ref/9.0.9/microsoft.aspnetcore.app.ref.9.0.9.nupkg.sha512"
|
||||
],
|
||||
"logs": []
|
||||
}
|
||||
1
labs/lab2/BankAccount/obj/project.packagespec.json
Normal file
1
labs/lab2/BankAccount/obj/project.packagespec.json
Normal file
@@ -0,0 +1 @@
|
||||
"restore":{"projectUniqueName":"/home/nik/oop/labs/lab2/BankAccount/BankAccount.csproj","projectName":"BankAccount","projectPath":"/home/nik/oop/labs/lab2/BankAccount/BankAccount.csproj","outputPath":"/home/nik/oop/labs/lab2/BankAccount/obj/","projectStyle":"PackageReference","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,"downloadDependencies":[{"name":"Microsoft.AspNetCore.App.Ref","version":"[9.0.9, 9.0.9]"}],"frameworkReferences":{"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"/usr/share/dotnet/sdk/9.0.110/PortableRuntimeIdentifierGraph.json"}}
|
||||
1
labs/lab2/BankAccount/obj/rider.project.model.nuget.info
Normal file
1
labs/lab2/BankAccount/obj/rider.project.model.nuget.info
Normal file
@@ -0,0 +1 @@
|
||||
17583465165360554
|
||||
1
labs/lab2/BankAccount/obj/rider.project.restore.info
Normal file
1
labs/lab2/BankAccount/obj/rider.project.restore.info
Normal file
@@ -0,0 +1 @@
|
||||
17583465165360554
|
||||
Reference in New Issue
Block a user