Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
lwYeo committed Aug 1, 2021
0 parents commit 4d7d9c6
Show file tree
Hide file tree
Showing 30 changed files with 4,355 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.vs/
obj/
bin/
Crypto Crypt.dll
26 changes: 26 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"version": "0.2.0",
"configurations": [
{
// Use IntelliSense to find out which attributes exist for C# debugging
// Use hover for the description of the existing attributes
// For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md
"name": ".NET Core Launch (console)",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build Debug",
// If you have changed target frameworks, make sure to update the program path.
"program": "${workspaceFolder}/Crypto LP Compounder/bin/Debug/net6.0/Crypto LP Compounder.dll",
"args": [],
"cwd": "${workspaceFolder}/Crypto LP Compounder",
// For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console
"console": "internalConsole",
"stopAtEntry": false
},
{
"name": ".NET Core Attach",
"type": "coreclr",
"request": "attach"
}
]
}
146 changes: 146 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,146 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "build Debug",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/Crypto LP Compounder/Crypto LP Compounder.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary",
"-c",
"Debug"
],
"problemMatcher": "$msCompile",
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "build Release",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/Crypto LP Compounder/Crypto LP Compounder.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary",
"-c",
"Release"
],
"problemMatcher": "$msCompile"
},
{
"label": "publish win-x64",
"command": "dotnet",
"type": "process",
"args": [
"publish",
"${workspaceFolder}/Crypto LP Compounder/Crypto LP Compounder.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary",
"-c",
"Release",
"-r",
"win-x64"
],
"problemMatcher": "$msCompile"
},
{
"label": "publish linux-x64",
"command": "dotnet",
"type": "process",
"args": [
"publish",
"${workspaceFolder}/Crypto LP Compounder/Crypto LP Compounder.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary",
"-c",
"Release",
"-r",
"linux-x64"
],
"problemMatcher": "$msCompile"
},
{
"label": "publish osx-x64",
"command": "dotnet",
"type": "process",
"args": [
"publish",
"${workspaceFolder}/Crypto LP Compounder/Crypto LP Compounder.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary",
"-c",
"Release",
"-r",
"osx-x64"
],
"problemMatcher": "$msCompile"
},
{
"label": "publish win-arm",
"command": "dotnet",
"type": "process",
"args": [
"publish",
"${workspaceFolder}/Crypto LP Compounder/Crypto LP Compounder.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary",
"-c",
"Release",
"-r",
"win-arm"
],
"problemMatcher": "$msCompile"
},
{
"label": "publish linux-arm",
"command": "dotnet",
"type": "process",
"args": [
"publish",
"${workspaceFolder}/Crypto LP Compounder/Crypto LP Compounder.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary",
"-c",
"Release",
"-r",
"linux-arm"
],
"problemMatcher": "$msCompile"
},
{
"label": "publish osx.11.0-arm64",
"command": "dotnet",
"type": "process",
"args": [
"publish",
"${workspaceFolder}/Crypto LP Compounder/Crypto LP Compounder.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary",
"-c",
"Release",
"-r",
"osx.11.0-arm64"
],
"problemMatcher": "$msCompile"
},
{
"label": "watch",
"command": "dotnet",
"type": "process",
"args": [
"watch",
"run",
"${workspaceFolder}/Crypto LP Compounder/Crypto LP Compounder.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
}
]
}
9 changes: 9 additions & 0 deletions Crypto LP Compounder.code-workspace
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"folders": [
{
"path": "."
}
],
"settings": {
}
}
22 changes: 22 additions & 0 deletions Crypto LP Compounder.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.30114.105
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Crypto LP Compounder", "Crypto LP Compounder\Crypto LP Compounder.csproj", "{70E1FCDF-C7E8-4A0C-8A91-A280EBACEC1E}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{70E1FCDF-C7E8-4A0C-8A91-A280EBACEC1E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{70E1FCDF-C7E8-4A0C-8A91-A280EBACEC1E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{70E1FCDF-C7E8-4A0C-8A91-A280EBACEC1E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{70E1FCDF-C7E8-4A0C-8A91-A280EBACEC1E}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal
Loading

0 comments on commit 4d7d9c6

Please sign in to comment.