DLL import

This commit is contained in:
hydrant
2019-09-17 23:20:11 +02:00
parent 73659cdb9e
commit 47137daf61
6 changed files with 8 additions and 9 deletions

BIN
Import/Bootstrapper.dll Normal file

Binary file not shown.

BIN
Import/rage-sharp.dll Normal file

Binary file not shown.

View File

@@ -2,7 +2,7 @@
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFramework>netcoreapp2.1</TargetFramework>
<TargetFramework>netcoreapp2.2</TargetFramework>
<ApplicationIcon />
<StartupObject />
<Configurations>Debug;Release;ServerBuild</Configurations>
@@ -31,11 +31,8 @@
</ItemGroup>
<ItemGroup>
<Reference Include="rage-sharp" Condition="'$(ConfigurationName)' != 'ServerBuild'">
<HintPath>..\..\..\dotnet\rage-sharp.dll</HintPath>
</Reference>
<Reference Include="rage-sharp" Condition="'$(ConfigurationName)' == 'ServerBuild'">
<HintPath>..\..\rage-sharp.dll</HintPath>
<Reference Include="rage-sharp" >
<HintPath>..\Import\rage-sharp.dll</HintPath>
</Reference>
</ItemGroup>

View File

@@ -20,7 +20,7 @@
<ItemGroup>
<Reference Include="Bootstrapper">
<HintPath>..\..\bridge\runtime\Bootstrapper.dll</HintPath>
<HintPath>..\Import\Bootstrapper.dll</HintPath>
</Reference>
</ItemGroup>
</Project>

View File

@@ -40,7 +40,7 @@
</ItemGroup>
<ItemGroup>
<Reference Include="Bootstrapper">
<HintPath>..\..\bridge\runtime\Bootstrapper.dll</HintPath>
<HintPath>..\Import\Bootstrapper.dll</HintPath>
</Reference>
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent" Condition="'$(ConfigurationName)' != 'ServerBuild' AND '$(OS)' == 'Windows_NT'">

View File

@@ -2,11 +2,13 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Configurations>Debug;Release;ServerBuild</Configurations>
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
<ItemGroup>
<Reference Include="Bootstrapper">
<HintPath>..\..\bridge\runtime\Bootstrapper.dll</HintPath>
<HintPath>..\Import\Bootstrapper.dll</HintPath>
</Reference>
</ItemGroup>