-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into materialReplacement
- Loading branch information
Showing
11 changed files
with
58 additions
and
240 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: build | ||
|
||
on: | ||
push: | ||
branches: [ "master" ] | ||
paths: | ||
- '**/*.cs' | ||
pull_request: | ||
paths: | ||
- '**/*.cs' | ||
workflow_dispatch: | ||
workflow_call: | ||
|
||
jobs: | ||
build: | ||
uses: KSPModdingLibs/KSPBuildTools/.github/workflows/build.yml@main | ||
with: | ||
dependency-identifiers: ${{ vars.DEPENDENCY_IDENTIFIERS }} |
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,3 @@ | ||
[submodule "KSPBuildTools"] | ||
path = KSPBuildTools | ||
url = https://github.com/KSPModdingLibs/KSPBuildTools.git |
Submodule KSPBuildTools
added at
d6a321
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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,67 +1,34 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" /> | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | ||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | ||
<ProjectGuid>{B3610197-17C4-4441-9B83-10E4755D1661}</ProjectGuid> | ||
<OutputType>Library</OutputType> | ||
<AppDesignerFolder>Properties</AppDesignerFolder> | ||
<RootNamespace>Shabby</RootNamespace> | ||
<TargetFramework>net48</TargetFramework> | ||
<LangVersion>7.3</LangVersion> | ||
<IsPackable>false</IsPackable> | ||
<PlatformTarget>x64</PlatformTarget> | ||
<NoWarn>1701;1702;CS0649;CS1591</NoWarn> | ||
<AssemblyCopyright>2024 KSPModdingLibs Contributors</AssemblyCopyright> | ||
<AssemblyVersion Condition = "'$(AssemblyVersion)' == ''">99.9.9</AssemblyVersion> | ||
<AssemblyName>Shabby</AssemblyName> | ||
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion> | ||
<FileAlignment>512</FileAlignment> | ||
<Deterministic>true</Deterministic> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | ||
<DebugSymbols>true</DebugSymbols> | ||
<DebugType>portable</DebugType> | ||
<Optimize>false</Optimize> | ||
<OutputPath>bin\Debug\</OutputPath> | ||
<DefineConstants>DEBUG;TRACE</DefineConstants> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | ||
<DebugType>portable</DebugType> | ||
<Optimize>true</Optimize> | ||
<OutputPath>bin\Release\</OutputPath> | ||
<DefineConstants>TRACE</DefineConstants> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<Reference Include="0Harmony"> | ||
<HintPath>dlls\0Harmony.dll</HintPath> | ||
<Private>false</Private> | ||
</Reference> | ||
<Reference Include="Assembly-CSharp, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null"> | ||
<HintPath>dlls\Assembly-CSharp.dll</HintPath> | ||
<Private>false</Private> | ||
</Reference> | ||
<Reference Include="System" /> | ||
<Reference Include="System.Core" /> | ||
<Reference Include="Microsoft.CSharp" /> | ||
<Reference Include="UnityEngine.AssetBundleModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null"> | ||
<HintPath>dlls\UnityEngine.AssetBundleModule.dll</HintPath> | ||
<Private>false</Private> | ||
</Reference> | ||
<Reference Include="UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null"> | ||
<HintPath>dlls\UnityEngine.CoreModule.dll</HintPath> | ||
<Private>false</Private> | ||
</Reference> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Compile Include="IconMaterialPatch.cs" /> | ||
<Compile Include="ModelFilter.cs" /> | ||
<Compile Include="Properties\AssemblyInfo.cs" /> | ||
<Compile Include="Shabby.cs" /> | ||
<Compile Include="MaterialDef.cs" /> | ||
<Compile Include="MaterialReplacement.cs" /> | ||
<Compile Include="ShabLoader.cs" /> | ||
<AssemblyAttribute Include="KSPAssembly"> | ||
<_Parameter1>$(AssemblyName)</_Parameter1> | ||
<_Parameter2_IsLiteral>true</_Parameter2_IsLiteral> | ||
<_Parameter2>$(AssemblyVersion.Split('.')[0])</_Parameter2> | ||
<_Parameter3_IsLiteral>true</_Parameter3_IsLiteral> | ||
<_Parameter3>$(AssemblyVersion.Split('.')[1])</_Parameter3> | ||
<_Parameter4_IsLiteral>true</_Parameter4_IsLiteral> | ||
<_Parameter4>$(AssemblyVersion.Split('.')[2])</_Parameter4> | ||
</AssemblyAttribute> | ||
</ItemGroup> | ||
|
||
<Import Project="$(SolutionDir)KSPBuildTools/KSPCommon.targets"/> | ||
|
||
<ItemGroup> | ||
<None Include=".editorconfig" /> | ||
<Reference Include="0Harmony, Culture=neutral, PublicKeyToken=null"> | ||
<HintPath>$(KSPRoot)/GameData/000_Harmony/0Harmony.dll</HintPath> | ||
</Reference> | ||
</ItemGroup> | ||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> | ||
</Project> |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.