Adding new project 'TUI'
I couldn't decide if CLI would implement a more traditional, unix-ish commandline tool style or if I wanted a more stylish, TUI design, so I separated those into two different projects.
This commit is contained in:
3
.gitignore
vendored
3
.gitignore
vendored
@@ -4,7 +4,8 @@ Common/bin
|
|||||||
Common/obj
|
Common/obj
|
||||||
CLI/bin
|
CLI/bin
|
||||||
CLI/obj
|
CLI/obj
|
||||||
|
TUI/bin
|
||||||
|
TUI/obj
|
||||||
.vs/
|
.vs/
|
||||||
Password\ Manager/PasswordManagerForm.resx
|
|
||||||
/..gitignore.un~
|
/..gitignore.un~
|
||||||
/.gitignore~
|
/.gitignore~
|
||||||
|
|||||||
@@ -9,6 +9,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Common", "Common\Common.csp
|
|||||||
EndProject
|
EndProject
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CLI", "CLI\CLI.csproj", "{34BE940D-30F7-4C01-B1FF-B1CCAB6B9FF6}"
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CLI", "CLI\CLI.csproj", "{34BE940D-30F7-4C01-B1FF-B1CCAB6B9FF6}"
|
||||||
EndProject
|
EndProject
|
||||||
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TUI", "TUI\TUI.csproj", "{283F045E-CD0E-419E-9793-BA1346E373C3}"
|
||||||
|
EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
Debug|Any CPU = Debug|Any CPU
|
Debug|Any CPU = Debug|Any CPU
|
||||||
@@ -55,6 +57,18 @@ Global
|
|||||||
{34BE940D-30F7-4C01-B1FF-B1CCAB6B9FF6}.Release|x64.Build.0 = Release|Any CPU
|
{34BE940D-30F7-4C01-B1FF-B1CCAB6B9FF6}.Release|x64.Build.0 = Release|Any CPU
|
||||||
{34BE940D-30F7-4C01-B1FF-B1CCAB6B9FF6}.Release|x86.ActiveCfg = Release|Any CPU
|
{34BE940D-30F7-4C01-B1FF-B1CCAB6B9FF6}.Release|x86.ActiveCfg = Release|Any CPU
|
||||||
{34BE940D-30F7-4C01-B1FF-B1CCAB6B9FF6}.Release|x86.Build.0 = Release|Any CPU
|
{34BE940D-30F7-4C01-B1FF-B1CCAB6B9FF6}.Release|x86.Build.0 = Release|Any CPU
|
||||||
|
{283F045E-CD0E-419E-9793-BA1346E373C3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{283F045E-CD0E-419E-9793-BA1346E373C3}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{283F045E-CD0E-419E-9793-BA1346E373C3}.Debug|x64.ActiveCfg = Debug|Any CPU
|
||||||
|
{283F045E-CD0E-419E-9793-BA1346E373C3}.Debug|x64.Build.0 = Debug|Any CPU
|
||||||
|
{283F045E-CD0E-419E-9793-BA1346E373C3}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||||
|
{283F045E-CD0E-419E-9793-BA1346E373C3}.Debug|x86.Build.0 = Debug|Any CPU
|
||||||
|
{283F045E-CD0E-419E-9793-BA1346E373C3}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{283F045E-CD0E-419E-9793-BA1346E373C3}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{283F045E-CD0E-419E-9793-BA1346E373C3}.Release|x64.ActiveCfg = Release|Any CPU
|
||||||
|
{283F045E-CD0E-419E-9793-BA1346E373C3}.Release|x64.Build.0 = Release|Any CPU
|
||||||
|
{283F045E-CD0E-419E-9793-BA1346E373C3}.Release|x86.ActiveCfg = Release|Any CPU
|
||||||
|
{283F045E-CD0E-419E-9793-BA1346E373C3}.Release|x86.Build.0 = Release|Any CPU
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(SolutionProperties) = preSolution
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
HideSolutionNode = FALSE
|
HideSolutionNode = FALSE
|
||||||
|
|||||||
2
TUI/Program.cs
Normal file
2
TUI/Program.cs
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
// See https://aka.ms/new-console-template for more information
|
||||||
|
Console.WriteLine("Hello, World!");
|
||||||
10
TUI/TUI.csproj
Normal file
10
TUI/TUI.csproj
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<OutputType>Exe</OutputType>
|
||||||
|
<TargetFramework>net7.0</TargetFramework>
|
||||||
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
|
<Nullable>enable</Nullable>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
</Project>
|
||||||
67
TUI/obj/TUI.csproj.nuget.dgspec.json
Normal file
67
TUI/obj/TUI.csproj.nuget.dgspec.json
Normal file
@@ -0,0 +1,67 @@
|
|||||||
|
{
|
||||||
|
"format": 1,
|
||||||
|
"restore": {
|
||||||
|
"/home/typo/Projects/Windows-Password-Manager/TUI/TUI.csproj": {}
|
||||||
|
},
|
||||||
|
"projects": {
|
||||||
|
"/home/typo/Projects/Windows-Password-Manager/TUI/TUI.csproj": {
|
||||||
|
"version": "1.0.0",
|
||||||
|
"restore": {
|
||||||
|
"projectUniqueName": "/home/typo/Projects/Windows-Password-Manager/TUI/TUI.csproj",
|
||||||
|
"projectName": "TUI",
|
||||||
|
"projectPath": "/home/typo/Projects/Windows-Password-Manager/TUI/TUI.csproj",
|
||||||
|
"packagesPath": "/home/typo/.nuget/packages/",
|
||||||
|
"outputPath": "/home/typo/Projects/Windows-Password-Manager/TUI/obj/",
|
||||||
|
"projectStyle": "PackageReference",
|
||||||
|
"configFilePaths": [
|
||||||
|
"/home/typo/.nuget/NuGet/NuGet.Config"
|
||||||
|
],
|
||||||
|
"originalTargetFrameworks": [
|
||||||
|
"net7.0"
|
||||||
|
],
|
||||||
|
"sources": {
|
||||||
|
"https://api.nuget.org/v3/index.json": {}
|
||||||
|
},
|
||||||
|
"frameworks": {
|
||||||
|
"net7.0": {
|
||||||
|
"targetAlias": "net7.0",
|
||||||
|
"projectReferences": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"warningProperties": {
|
||||||
|
"warnAsError": [
|
||||||
|
"NU1605"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"frameworks": {
|
||||||
|
"net7.0": {
|
||||||
|
"targetAlias": "net7.0",
|
||||||
|
"imports": [
|
||||||
|
"net461",
|
||||||
|
"net462",
|
||||||
|
"net47",
|
||||||
|
"net471",
|
||||||
|
"net472",
|
||||||
|
"net48",
|
||||||
|
"net481"
|
||||||
|
],
|
||||||
|
"assetTargetFallback": true,
|
||||||
|
"warn": true,
|
||||||
|
"downloadDependencies": [
|
||||||
|
{
|
||||||
|
"name": "Microsoft.AspNetCore.App.Ref",
|
||||||
|
"version": "[7.0.3, 7.0.3]"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"frameworkReferences": {
|
||||||
|
"Microsoft.NETCore.App": {
|
||||||
|
"privateAssets": "all"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/7.0.103/RuntimeIdentifierGraph.json"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
15
TUI/obj/TUI.csproj.nuget.g.props
Normal file
15
TUI/obj/TUI.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/typo/.nuget/packages/</NuGetPackageRoot>
|
||||||
|
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/home/typo/.nuget/packages/</NuGetPackageFolders>
|
||||||
|
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||||
|
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.4.0</NuGetToolVersion>
|
||||||
|
</PropertyGroup>
|
||||||
|
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
|
<SourceRoot Include="/home/typo/.nuget/packages/" />
|
||||||
|
</ItemGroup>
|
||||||
|
</Project>
|
||||||
2
TUI/obj/TUI.csproj.nuget.g.targets
Normal file
2
TUI/obj/TUI.csproj.nuget.g.targets
Normal file
@@ -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" />
|
||||||
72
TUI/obj/project.assets.json
Normal file
72
TUI/obj/project.assets.json
Normal file
@@ -0,0 +1,72 @@
|
|||||||
|
{
|
||||||
|
"version": 3,
|
||||||
|
"targets": {
|
||||||
|
"net7.0": {}
|
||||||
|
},
|
||||||
|
"libraries": {},
|
||||||
|
"projectFileDependencyGroups": {
|
||||||
|
"net7.0": []
|
||||||
|
},
|
||||||
|
"packageFolders": {
|
||||||
|
"/home/typo/.nuget/packages/": {}
|
||||||
|
},
|
||||||
|
"project": {
|
||||||
|
"version": "1.0.0",
|
||||||
|
"restore": {
|
||||||
|
"projectUniqueName": "/home/typo/Projects/Windows-Password-Manager/TUI/TUI.csproj",
|
||||||
|
"projectName": "TUI",
|
||||||
|
"projectPath": "/home/typo/Projects/Windows-Password-Manager/TUI/TUI.csproj",
|
||||||
|
"packagesPath": "/home/typo/.nuget/packages/",
|
||||||
|
"outputPath": "/home/typo/Projects/Windows-Password-Manager/TUI/obj/",
|
||||||
|
"projectStyle": "PackageReference",
|
||||||
|
"configFilePaths": [
|
||||||
|
"/home/typo/.nuget/NuGet/NuGet.Config"
|
||||||
|
],
|
||||||
|
"originalTargetFrameworks": [
|
||||||
|
"net7.0"
|
||||||
|
],
|
||||||
|
"sources": {
|
||||||
|
"https://api.nuget.org/v3/index.json": {}
|
||||||
|
},
|
||||||
|
"frameworks": {
|
||||||
|
"net7.0": {
|
||||||
|
"targetAlias": "net7.0",
|
||||||
|
"projectReferences": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"warningProperties": {
|
||||||
|
"warnAsError": [
|
||||||
|
"NU1605"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"frameworks": {
|
||||||
|
"net7.0": {
|
||||||
|
"targetAlias": "net7.0",
|
||||||
|
"imports": [
|
||||||
|
"net461",
|
||||||
|
"net462",
|
||||||
|
"net47",
|
||||||
|
"net471",
|
||||||
|
"net472",
|
||||||
|
"net48",
|
||||||
|
"net481"
|
||||||
|
],
|
||||||
|
"assetTargetFallback": true,
|
||||||
|
"warn": true,
|
||||||
|
"downloadDependencies": [
|
||||||
|
{
|
||||||
|
"name": "Microsoft.AspNetCore.App.Ref",
|
||||||
|
"version": "[7.0.3, 7.0.3]"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"frameworkReferences": {
|
||||||
|
"Microsoft.NETCore.App": {
|
||||||
|
"privateAssets": "all"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/7.0.103/RuntimeIdentifierGraph.json"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
10
TUI/obj/project.nuget.cache
Normal file
10
TUI/obj/project.nuget.cache
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"version": 2,
|
||||||
|
"dgSpecHash": "Dg+73Jb1eWPBzk18gx5TgWX3ayrK3OoKoeFgSfCFI5vwvLlQpG3DwcHE+BGFZm2nZGQQWzZOzxIWaq33uUfOWA==",
|
||||||
|
"success": true,
|
||||||
|
"projectFilePath": "/home/typo/Projects/Windows-Password-Manager/TUI/TUI.csproj",
|
||||||
|
"expectedPackageFiles": [
|
||||||
|
"/home/typo/.nuget/packages/microsoft.aspnetcore.app.ref/7.0.3/microsoft.aspnetcore.app.ref.7.0.3.nupkg.sha512"
|
||||||
|
],
|
||||||
|
"logs": []
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user