Skip to content

Commit 966e524

Browse files
committed
switch to slnx
1 parent bb76e27 commit 966e524

6 files changed

Lines changed: 12 additions & 37 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -401,3 +401,4 @@ FodyWeavers.xsd
401401
*.sln.iml
402402
*.bak
403403
/lib
404+
/.vscode

Directory.Build.targets

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<GameDir>Y:\SteamLibrary\steamapps\common\New Star GP\release\BepInEx\plugins\</GameDir>
55
</PropertyGroup>
66

7-
<Target Name="CreateAndCopyToGameDir" AfterTargets="Build">
7+
<Target Name="CreateAndCopyToGameDir" AfterTargets="Build" Condition="Exists('$(GameDir)')">
88
<PropertyGroup>
99
<GamePluginDir>$(GameDir)$(TargetName)</GamePluginDir>
1010
</PropertyGroup>
@@ -22,4 +22,7 @@
2222
<Copy SourceFiles="@(FilesToCopy)" DestinationFolder="$(GamePluginDir)" />
2323
<Message Text="[$(ProjectName)] Copied @(FilesToCopy, ', ') to $(GamePluginDir)" Importance="High" />
2424
</Target>
25+
<Target Name="WarnGameDirNotFound" AfterTargets="Build" Condition="!Exists('$(GameDir)')">
26+
<Message Text="[$(ProjectName)] GameDir not found. Looked for: $(GameDir)" Importance="High" />
27+
</Target>
2528
</Project>

NewStarGP-TelemetryMod.sln

Lines changed: 0 additions & 36 deletions
This file was deleted.

NewStarGP-TelemetryMod.slnx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<Solution>
2+
<Project Path="../SharedLib/SharedLib.shproj" />
3+
<Project Path="../telemetry-lib/TelemetryLib.csproj" />
4+
<Project Path="NewStarGPTelemetryMod.csproj" />
5+
</Solution>

libs/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Assembly*.dll

libs/readme.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Place games Assembly-CSharp.dll here

0 commit comments

Comments
 (0)