-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from cvusmo/dev
Dev
- Loading branch information
Showing
15 changed files
with
247 additions
and
307 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFramework>netstandard2.0</TargetFramework> | ||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> | ||
<LangVersion>latest</LangVersion> | ||
<ImplicitUsings>true</ImplicitUsings> | ||
<AssemblyName>com.github.cvusmo.fancyfueltanks</AssemblyName> | ||
<Product>FFT</Product> | ||
<Description>Fancy Fuel Tanks</Description> | ||
<Version>0.1.4</Version> | ||
<RestoreAdditionalProjectSources> | ||
https://nuget.spacewarp.org/v3/index.json | ||
</RestoreAdditionalProjectSources> | ||
<RootNamespace>FFT</RootNamespace> | ||
<ModId Condition="'$(ModId)'==''">FFT</ModId> | ||
<PackageProjectUrl>https://github.com/cvusmo/FFT</PackageProjectUrl> | ||
<RepositoryUrl></RepositoryUrl> | ||
<PackageTags>KSP2-mods</PackageTags> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> | ||
<Optimize>True</Optimize> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<PackageReference Include="BepInEx.Analyzers" Version="1.0.8" PrivateAssets="all" /> | ||
<PackageReference Include="BepInEx.AssemblyPublicizer.MSBuild" Version="0.4.1" PrivateAssets="all" /> | ||
<PackageReference Include="BepInEx.Core" Version="5.*" /> | ||
<PackageReference Include="BepInEx.PluginInfoProps" Version="2.*" /> | ||
<PackageReference Include="HarmonyX" Version="2.10.1" /> | ||
<PackageReference Include="SpaceWarp" Version="1.4.*" /> | ||
<PackageReference Include="UnityEngine.Modules" Version="2020.3.33.1" IncludeAssets="compile" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Reference Include="Assembly-CSharp"> | ||
<HintPath>..\..\..\..\..\..\..\Program Files (x86)\Steam\steamapps\common\Kerbal Space Program 2\KSP2_x64_Data\Managed\Assembly-CSharp.dll</HintPath> | ||
<Publicize>true</Publicize> | ||
<Private>false</Private> | ||
</Reference> | ||
</ItemGroup> | ||
<Target Name="PostBuild" AfterTargets="PostBuildEvent"> | ||
<Exec Command="rm -rf "$(ProjectDir)..\$(ConfigurationName)\"
echo d | xcopy /y /s "$(ProjectDir)..\$(ModId)\" "$(ProjectDir)..\$(ConfigurationName)\BepInEx\plugins\$(ModId)\"
echo f | xcopy /y "$(TargetPath)" "$(ProjectDir)..\$(ConfigurationName)\BepInEx\plugins\$(ModId)\$(ModId).dll"
if $(ConfigurationName) == Debug echo f | xcopy /y "$(TargetDir)$(TargetName).pdb" "$(ProjectDir)..\$(ConfigurationName)\BepInEx\plugins\$(ModId)\$(ModId).pdb"
xcopy /y "$(ProjectDir)..\LICENSE" "$(ProjectDir)..\$(ConfigurationName)\BepInEx\plugins\$(ModId)\"
echo f | xcopy /y "$(ProjectDir)..\README.md" "$(ProjectDir)..\$(ConfigurationName)\BepInEx\plugins\$(ModId)\README.txt"" /> | ||
</Target> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.