forked from nikita/muzika-gromche
Make build config more portable with user-specified git-ignored paths
This commit is contained in:
parent
4144069b41
commit
af45b958fd
|
@ -483,6 +483,9 @@ $RECYCLE.BIN/
|
|||
# Vim temporary swap files
|
||||
*.swp
|
||||
|
||||
# Override *.user rule for templates
|
||||
!*.template.props.user
|
||||
|
||||
riderModule.iml
|
||||
dist/
|
||||
*.dll
|
||||
|
|
|
@ -0,0 +1,4 @@
|
|||
<Project>
|
||||
<!-- Import local user props -->
|
||||
<Import Project="$(SolutionDir)MuzikaGromche.props.user"/>
|
||||
</Project>
|
|
@ -0,0 +1,10 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project>
|
||||
<PropertyGroup>
|
||||
<!-- Copy this file to MuzikaGromche.props.user and uncomment one of two paths below: -->
|
||||
<!-- On Linux: -->
|
||||
<!-- <LethalCompanyDir>$(HOME)/.local/share/Steam/steamapps/common/Lethal Company/</LethalCompanyDir> -->
|
||||
<!-- On Windows: -->
|
||||
<!-- <LethalCompanyDir>C:/Program Files (x86)/Steam/steamapps/common/Lethal Company/</LethalCompanyDir> -->
|
||||
</PropertyGroup>
|
||||
</Project>
|
|
@ -15,8 +15,18 @@
|
|||
<PackageReference Include="BepInEx.PluginInfoProps" Version="1.*"/>
|
||||
<PackageReference Include="UnityEngine.Modules" Version="2022.3.9" IncludeAssets="compile"/>
|
||||
<PackageReference Include="BepInEx.AssemblyPublicizer.MSBuild" Version="0.4.1" PrivateAssets="all" />
|
||||
<Reference Include="Assembly-CSharp" HintPath="Assembly-CSharp.dll" Publicize="true" />
|
||||
<Reference Include="Unity.Netcode.Runtime" HintPath="Unity.Netcode.Runtime.dll" Publicize="true" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Reference Include="Assembly-CSharp" Publicize="true">
|
||||
<HintPath>$(LethalCompanyDir)Lethal Company_Data\Managed\Assembly-CSharp.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Unity.Collections">
|
||||
<HintPath>$(LethalCompanyDir)Lethal Company_Data\Managed\Unity.Collections.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Unity.Netcode.Runtime" Publicize="true">
|
||||
<HintPath>$(LethalCompanyDir)Lethal Company_Data\Managed\Unity.Netcode.Runtime.dll</HintPath>
|
||||
</Reference>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup Condition="'$(TargetFramework.TrimEnd(`0123456789`))' == 'net'">
|
||||
|
|
Loading…
Reference in New Issue