Skip to content

Commit e75f68e

Browse files
committed
Update UnityLauncherPro.csproj references and add NuGet package
Removed direct assembly references to System.Configuration, Microsoft.CSharp, and System.Data.DataSetExtensions from UnityLauncherPro.csproj. Added a NuGet package reference to System.Configuration.ConfigurationManager (version 9.0.10) instead, streamlining dependency management. No other changes were made to the project file.
1 parent 38af7b9 commit e75f68e

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

UnityLauncherPro/UnityLauncherPro.csproj

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,6 @@
2323
<ApplicationIcon>Images/icon.ico</ApplicationIcon>
2424
<ApplicationManifest>app.manifest</ApplicationManifest>
2525
</PropertyGroup>
26-
<ItemGroup>
27-
<Reference Include="System.Configuration" />
28-
<Reference Include="Microsoft.CSharp" />
29-
<Reference Include="System.Data.DataSetExtensions" />
30-
</ItemGroup>
3126
<ItemGroup>
3227
<BootstrapperPackage Include=".NETFramework,Version=v4.6.1">
3328
<Visible>False</Visible>
@@ -55,4 +50,7 @@
5550
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
5651
<Exec Command="powershell -NoProfile -ExecutionPolicy Bypass -Command &quot;$pattern = 'public static string Stamp = \&quot;.*?\&quot;;'; $replacement = 'public static string Stamp = \&quot;\&quot;;'; $path = '$(ProjectDir)Version.cs'; $content = Get-Content $path -Raw; $newContent = $content -replace $pattern, $replacement; [System.IO.File]::WriteAllText($path, $newContent, [System.Text.Encoding]::UTF8)&quot;" />
5752
</Target>
53+
<ItemGroup>
54+
<PackageReference Include="System.Configuration.ConfigurationManager" Version="9.0.10" />
55+
</ItemGroup>
5856
</Project>

0 commit comments

Comments
 (0)