-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor to remove versioning system.
- Loading branch information
Showing
182 changed files
with
194 additions
and
498 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
@@ -1,62 +1,45 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<Import Project="../GlobalCommon.targets"/> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net48</TargetFramework> | ||
<OutputType>Library</OutputType> | ||
<GenerateAssemblyInfo>false</GenerateAssemblyInfo> | ||
<NoStdLib>false</NoStdLib> | ||
<LangVersion>preview</LangVersion> | ||
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath> | ||
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath> | ||
<Configurations>v1.4;v1.5</Configurations> | ||
<AssemblyName>AM.AlienRacesPatch</AssemblyName> | ||
<RootNamespace>AM.AlienRacesPatch</RootNamespace> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\ThingGenerator\AnimationMod.csproj"> | ||
<CopyLocal>False</CopyLocal> | ||
<Private>False</Private> | ||
<ExcludeAssets>all</ExcludeAssets> | ||
</ProjectReference> | ||
<PackageReference Include="Krafs.Rimworld.Ref" Version="1.5.4060-beta" /> | ||
</ItemGroup> | ||
|
||
<!-- _____ 1.4 _____ --> | ||
<ItemGroup Condition="'$(Configuration)'=='v1.4'"> | ||
<Reference Include="AlienRace"> | ||
<HintPath>refs/1.4/AlienRace14.dll</HintPath> | ||
<ItemGroup> | ||
<ProjectReference Include="..\AnimationMod\AnimationMod.csproj"> | ||
<CopyLocal>False</CopyLocal> | ||
<Private>False</Private> | ||
</Reference> | ||
<PackageReference Include="Krafs.Rimworld.Ref"> | ||
<Version>1.4.3901</Version> | ||
</PackageReference> | ||
<ExcludeAssets>all</ExcludeAssets> | ||
</ProjectReference> | ||
</ItemGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)'=='v1.4'"> | ||
<DebugType>none</DebugType> | ||
<OutputPath>..\..\Patch_AlienRaces\1.4\Assemblies\</OutputPath> | ||
<Optimize>true</Optimize> | ||
<DefineConstants>TRACE;V14</DefineConstants> | ||
</PropertyGroup> | ||
|
||
<!-- _____ 1.5 _____ --> | ||
<ItemGroup Condition="'$(Configuration)'=='v1.5'"> | ||
<Reference Include="AlienRace"> | ||
<HintPath>refs/1.4/AlienRace14.dll</HintPath> <!-- TODO CHANGE ME ONCE HAR UPDATES! --> | ||
<ItemGroup> | ||
<Reference Include="AlienRace"> | ||
<HintPath>refs\AlienRace.dll</HintPath> | ||
<CopyLocal>False</CopyLocal> | ||
<Private>False</Private> | ||
</Reference> | ||
<PackageReference Include="Krafs.Rimworld.Ref"> | ||
<Version>1.5.4033-beta</Version> | ||
</PackageReference> | ||
</ItemGroup> | ||
<ExcludeAssets>runtime</ExcludeAssets> | ||
</Reference> | ||
</ItemGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)'=='v1.5'"> | ||
<PropertyGroup> | ||
<DebugType>none</DebugType> | ||
<OutputPath>..\..\Patch_AlienRaces\1.5\Assemblies\</OutputPath> | ||
<OutputPath>..\..\Patch_AlienRaces\$(RimworldVersion)\Assemblies\</OutputPath> | ||
<Optimize>true</Optimize> | ||
<DefineConstants>TRACE;V15</DefineConstants> | ||
<DefineConstants>TRACE</DefineConstants> | ||
</PropertyGroup> | ||
|
||
</Project> |
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
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 |
---|---|---|
|
@@ -13,9 +13,7 @@ | |
using RimWorld; | ||
using UnityEngine; | ||
using Verse; | ||
#if !V14 | ||
using LudeonTK; | ||
#endif | ||
|
||
namespace AM; | ||
|
||
|
Oops, something went wrong.