-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCoreTempGPU.csproj
More file actions
47 lines (44 loc) · 1.76 KB
/
Copy pathCoreTempGPU.csproj
File metadata and controls
47 lines (44 loc) · 1.76 KB
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
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net48</TargetFramework>
<LangVersion>7.3</LangVersion>
<OutputType>Library</OutputType>
<AssemblyName>CoreTempGPU</AssemblyName>
<RootNamespace>CoreTempGPU</RootNamespace>
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<PlatformTarget>AnyCPU</PlatformTarget>
<Prefer32Bit>false</Prefer32Bit>
<AutoGenerateBindingRedirects>false</AutoGenerateBindingRedirects>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
</PropertyGroup>
<ItemGroup>
<Compile Include="GpuPlugin.cs" />
<Compile Include="GpuMonitor.cs" />
<Compile Include="GpuWindow.cs" />
<Compile Include="Nvml.cs" />
<Compile Include="Pdh.cs" />
<Compile Include="PluginSettings.cs" />
<Compile Include="SettingsDialog.cs" />
<Compile Include="TrayIcons.cs" />
<Compile Include="UiStyle.cs" />
<Compile Include="ProcessMemory.cs" />
</ItemGroup>
<ItemGroup>
<Reference Include="CoreTempPluginProxy">
<HintPath>lib\CoreTempPluginProxy.dll</HintPath>
<Private>true</Private>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Drawing" />
<Reference Include="System.Windows.Forms" />
</ItemGroup>
<ItemGroup>
<None Include="Plugin.cfg" CopyToOutputDirectory="Always" />
<None Include="lib\CoreTempPluginProxy.dll" CopyToOutputDirectory="Always" />
<None Include="bridge\PluginNetInterface-x64.dll" CopyToOutputDirectory="Always" />
<None Include="bridge\PluginNetInterface-x86.dll" CopyToOutputDirectory="Always" />
</ItemGroup>
</Project>