Skip to content

Commit 0663289

Browse files
authored
Merge pull request #7 from cheese3660/main
restructure some stuff to allow for custom fuels to be added as well as fuel recipes
2 parents 5617bca + 1ea054f commit 0663289

9 files changed

Lines changed: 49 additions & 1 deletion

File tree

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,4 +80,6 @@ FodyWeavers.xsd
8080
# OS-specific
8181
Thumbs.db
8282
Desktop.ini
83-
.DS_Store
83+
.DS_Store
84+
.idea/
85+
external_dlls/PUT_EXTERNAL_DLLS_HERE

CommunityResources.sln

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
Project("{70C57300-2431-4824-B9F3-4522377BD657}") = "CommunityResources", "src\CommunityResources\CommunityResources.csproj", "{2A62527B-B543-4E5A-A197-D28C37F282D8}"
4+
EndProject
5+
Global
6+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
7+
Debug|Any CPU = Debug|Any CPU
8+
Release|Any CPU = Release|Any CPU
9+
Deploy|Any CPU = Deploy|Any CPU
10+
DeployAndRun|Any CPU = DeployAndRun|Any CPU
11+
EndGlobalSection
12+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
13+
{2A62527B-B543-4E5A-A197-D28C37F282D8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
14+
{2A62527B-B543-4E5A-A197-D28C37F282D8}.Debug|Any CPU.Build.0 = Debug|Any CPU
15+
{2A62527B-B543-4E5A-A197-D28C37F282D8}.Release|Any CPU.ActiveCfg = Release|Any CPU
16+
{2A62527B-B543-4E5A-A197-D28C37F282D8}.Release|Any CPU.Build.0 = Release|Any CPU
17+
{2A62527B-B543-4E5A-A197-D28C37F282D8}.Deploy|Any CPU.ActiveCfg = Deploy|Any CPU
18+
{2A62527B-B543-4E5A-A197-D28C37F282D8}.Deploy|Any CPU.Build.0 = Deploy|Any CPU
19+
{2A62527B-B543-4E5A-A197-D28C37F282D8}.DeployAndRun|Any CPU.ActiveCfg = DeployAndRun|Any CPU
20+
{2A62527B-B543-4E5A-A197-D28C37F282D8}.DeployAndRun|Any CPU.Build.0 = DeployAndRun|Any CPU
21+
EndGlobalSection
22+
EndGlobal
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
// Todo
File renamed without changes.
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
2+
3+
4+
// 6 units of hydrogen to 1 unit of oxidizer, normalized
5+
@new("Hydrolox", true)
6+
:resources {
7+
displayNameKey: "Resources/DisplayName/Hydrolox";
8+
abbreviationKey: "Resource/Abbreviation/HO";
9+
+Hydrogen {
10+
unitsPerRecipeUnit: 0.986394;
11+
}
12+
+Oxidizer {
13+
unitsPerRecipeUnit: 0.164399;
14+
}
15+
}

scripts/build-debug.bat

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
@echo off
2+
dotnet build "../CommunityResourceUnits.sln" -c Debug

scripts/build-deploy.bat

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
@echo off
2+
dotnet build "../CommunityResourceUnits.sln" -c Deploy

scripts/build-release.bat

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
@echo off
2+
dotnet build "../CommunityResourceUnits.sln" -c Release

scripts/build-run.bat

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
@echo off
2+
dotnet build "../CommunityResourceUnits.sln" -c DeployAndRun

0 commit comments

Comments
 (0)