-
Notifications
You must be signed in to change notification settings - Fork 0
/
LiquidCtlAfterburnerPlugin.csproj
62 lines (62 loc) · 3.87 KB
/
LiquidCtlAfterburnerPlugin.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<ProjectGuid>{D918DE0E-E9A1-4AA1-B4D4-A863BB43AB8E}</ProjectGuid>
<AssemblyName>LiquidCtl</AssemblyName>
<TargetFramework>net48</TargetFramework>
<Platforms>x86</Platforms>
<AssemblyTitle>LiquidCtl Afterburner Plugin</AssemblyTitle>
<Description>MSI Afterburner plug-in for monitoring AIOs via LiquidCtl</Description>
<AssemblyVersion>0.1.0</AssemblyVersion>
<FileVersion>0.1.0</FileVersion>
<OutputPath>bin\$(Configuration)\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Platform)'=='x86'">
<PlatformTarget>x86</PlatformTarget>
</PropertyGroup>
<PropertyGroup>
<DllExportIdent>FF2CEFE1-C36E-4971-AEC1-5F85B4361135</DllExportIdent>
<DllExportMetaLibName>DllExport.dll</DllExportMetaLibName>
<DllExportNamespace>System.Runtime.InteropServices</DllExportNamespace>
<DllExportDDNSCecil>true</DllExportDDNSCecil>
<PlatformTarget>x86</PlatformTarget>
<DllExportOrdinalsBase>1</DllExportOrdinalsBase>
<DllExportGenExpLib>false</DllExportGenExpLib>
<DllExportOurILAsm>false</DllExportOurILAsm>
<DllExportSysObjRebase>false</DllExportSysObjRebase>
<DllExportLeaveIntermediateFiles>false</DllExportLeaveIntermediateFiles>
<DllExportTimeout>30000</DllExportTimeout>
<DllExportPeCheck>2</DllExportPeCheck>
<DllExportPatches>2</DllExportPatches>
<DllExportPreProcType>9</DllExportPreProcType>
<DllExportPostProcType>0</DllExportPostProcType>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="DllExport" Version="1.7.4" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
<PackageReference Include="System.Management" Version="6.0.0" />
</ItemGroup>
<ImportGroup Label=".NET DllExport">
<Import Project="$(workspaceFolder)packages\DllExport.1.7.4\tools\net.r_eg.DllExport.targets" Condition="Exists($([MSBuild]::Escape('$(workspaceFolder)packages\DllExport.1.7.4\tools\net.r_eg.DllExport.targets')))" Label="8337224c9ad9e356" />
</ImportGroup>
<Target Name="DllExportPreProc" BeforeTargets="DllExportMod" Label="8337224c9ad9e356:PreProc">
<Copy SourceFiles="$(DllExportMetaLibFullPath)" DestinationFolder="$(TargetDir)" SkipUnchangedFiles="true" OverwriteReadOnlyFiles="true" />
<Delete Files="$(TargetDir)$(DllExportMetaLibName)" ContinueOnError="true" />
</Target>
<Target Name="DllExportRestorePkg" BeforeTargets="PrepareForBuild">
<Error Condition="!Exists('$(workspaceFolder)DllExport.bat')" Text="DllExport.bat is not found. Path: '$(workspaceFolder)' - https://github.com/3F/DllExport" />
<Exec Condition="('$(DllExportModImported)' != 'true' Or !Exists('$(workspaceFolder)packages\DllExport.1.7.4\tools\net.r_eg.DllExport.targets')) And Exists('$(workspaceFolder)DllExport.bat')" Command=".\DllExport.bat -action Restore" WorkingDirectory="$(workspaceFolder)" />
<MSBuild Condition="'$(DllExportModImported)' != 'true'" Projects="$(workspaceFolder)packages\DllExport.1.7.4\tools\net.r_eg.DllExport.targets" Targets="DllExportMetaXBaseTarget" Properties="TargetFramework=$(TargetFramework)">
<Output TaskParameter="TargetOutputs" PropertyName="DllExportMetaXBase" />
</MSBuild>
<ItemGroup>
<Reference Include="DllExport, PublicKeyToken=8337224c9ad9e356">
<HintPath>$(workspaceFolder)packages\DllExport.1.7.4\gcache\$(DllExportMetaXBase)\$(DllExportNamespace)\$(DllExportMetaLibName)</HintPath>
<Private>False</Private>
<SpecificVersion>False</SpecificVersion>
</Reference>
</ItemGroup>
</Target>
<Target Name="DllExportRPkgDynamicImport" BeforeTargets="PostBuildEvent" DependsOnTargets="GetFrameworkPaths" Condition="'$(DllExportModImported)' != 'true' And '$(DllExportRPkgDyn)' != 'false'">
<MSBuild BuildInParallel="true" UseResultsCache="true" Projects="$(MSBuildProjectFullPath)" Properties="DllExportRPkgDyn=true" Targets="Build" />
</Target>
</Project>