GrafanaPostMod/GrafanaPostMod/Grafana.csproj

35 lines
1.3 KiB
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<AssemblyName>GrafanaPostMod</AssemblyName>
<Version>1.0.1</Version>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<ItemGroup>
<!-- Reference to BepInEx -->
<Reference Include="BepInEx">
<HintPath>E:\SteamLibrary\steamapps\common\REPO\BepInEx\core\BepInEx.dll</HintPath>
</Reference>
<!-- Reference to UnityEngine -->
<Reference Include="UnityEngine">
<HintPath>E:\SteamLibrary\steamapps\common\REPO\REPO_Data\Managed\UnityEngine.dll</HintPath>
</Reference>
<!-- Reference to UnityEngine.CoreModule -->
<Reference Include="UnityEngine.CoreModule">
<HintPath>E:\SteamLibrary\steamapps\common\REPO\REPO_Data\Managed\UnityEngine.CoreModule.dll</HintPath>
</Reference>
<!-- Reference to UnityEngine.UnityWebRequestModule -->
<Reference Include="UnityEngine.UnityWebRequestModule">
<HintPath>E:\SteamLibrary\steamapps\common\REPO\REPO_Data\Managed\UnityEngine.UnityWebRequestModule.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<!-- NuGet package for HTTP requests -->
<PackageReference Include="System.Net.Http" Version="4.3.4" />
</ItemGroup>
</Project>