Private
Public Access
1
0

reinit branch

This commit is contained in:
2026-03-11 01:46:34 +01:00
commit bff9251737
129 changed files with 16115 additions and 0 deletions

1
OrekiWoofsBees.Full/.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
Mods/

View File

@@ -0,0 +1,38 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Configurations>Debug;Release;Debug22</Configurations>
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
<DisableFastUpToDateCheck>true</DisableFastUpToDateCheck>
<VintageStoryDataPathArgs></VintageStoryDataPathArgs>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Debug22'">
<TargetFramework>net10.0</TargetFramework>
<VintageStoryDataPathArgs> --dataPath "..\VintageStoryDataBeehives\Data22"</VintageStoryDataPathArgs>
</PropertyGroup>
<Target Name="BuildBothMods" BeforeTargets="Build">
<Exec Command="dotnet build &quot;$(ProjectDir)../OrekiWoofsBeehives/OrekiWoofsBeehives.csproj&quot; -c $(Configuration)" />
<Exec Command="dotnet build &quot;$(ProjectDir)../RoamingBees/RoamingBees/RoamingBees.csproj&quot; -c $(Configuration)" />
<RemoveDir Directories="$(ProjectDir)Mods/orekiwoofsbeehives" />
<RemoveDir Directories="$(ProjectDir)Mods/roamingbees" />
<Delete Files="$(ProjectDir)Mods/orekiwoofsbeehives_v*.zip;$(ProjectDir)Mods/roamingbees_v*.zip" />
<MakeDir Directories="$(ProjectDir)Mods/orekiwoofsbeehives" />
<MakeDir Directories="$(ProjectDir)Mods/roamingbees" />
<ItemGroup>
<_BeehivesFiles Include="$(ProjectDir)../OrekiWoofsBeehives/bin/$(Configuration)/Mods/orekiwoofsbeehives/**/*" />
<_RoamingBeesFiles Include="$(ProjectDir)../RoamingBees/RoamingBees/bin/$(Configuration)/Mods/roamingbees/**/*" />
<_BeehivesAssets Include="$(ProjectDir)../OrekiWoofsBeehives/assets/**/*" />
<_RoamingBeesAssets Include="$(ProjectDir)../RoamingBees/RoamingBees/assets/**/*" />
</ItemGroup>
<Copy SourceFiles="@(_BeehivesFiles)" DestinationFolder="$(ProjectDir)Mods/orekiwoofsbeehives/%(RecursiveDir)" SkipUnchangedFiles="true" />
<Copy SourceFiles="@(_RoamingBeesFiles)" DestinationFolder="$(ProjectDir)Mods/roamingbees/%(RecursiveDir)" SkipUnchangedFiles="true" />
<Copy SourceFiles="@(_BeehivesAssets)" DestinationFolder="$(ProjectDir)Mods/orekiwoofsbeehives/assets/%(RecursiveDir)" SkipUnchangedFiles="true" />
<Copy SourceFiles="@(_RoamingBeesAssets)" DestinationFolder="$(ProjectDir)Mods/roamingbees/assets/%(RecursiveDir)" SkipUnchangedFiles="true" />
</Target>
</Project>

View File

@@ -0,0 +1,16 @@
{
"profiles": {
"Client": {
"commandName": "Executable",
"executablePath": "dotnet",
"commandLineArgs": "\"$(VINTAGE_STORY)/Vintagestory.dll\" --tracelog --addModPath \"$(ProjectDir)/Mods\"$(VintageStoryDataPathArgs)",
"workingDirectory": "$(VINTAGE_STORY)"
},
"Server": {
"commandName": "Executable",
"executablePath": "dotnet",
"commandLineArgs": "\"$(VINTAGE_STORY)/VintagestoryServer.dll\" --tracelog --addModPath \"$(ProjectDir)/Mods\"$(VintageStoryDataPathArgs)",
"workingDirectory": "$(VINTAGE_STORY)"
}
}
}