-
Notifications
You must be signed in to change notification settings - Fork 0
/
Plugin.Aida64.csproj
44 lines (39 loc) · 1.63 KB
/
Plugin.Aida64.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0-windows</TargetFramework>
<RootNamespace>MoBro.Plugin.Aida64</RootNamespace>
<Authors>ModBros</Authors>
<Company>ModBros KG</Company>
<Product>MoBro</Product>
<Description>Aida64 Plugin for MoBro</Description>
<IsPackable>false</IsPackable>
<Title>MoBro Aida64 Plugin</Title>
<Copyright>(C) ModBros KG 2024</Copyright>
<PackageProjectUrl>https://mobro.app</PackageProjectUrl>
<VersionPrefix>0.2.0</VersionPrefix>
<Nullable>enable</Nullable>
<OutputType>Exe</OutputType>
<EnableDynamicLoading>true</EnableDynamicLoading>
<UseAppHost>false</UseAppHost>
<SelfContained>false</SelfContained>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<LangVersion>11</LangVersion>
<InvariantGlobalization>true</InvariantGlobalization>
</PropertyGroup>
<ItemGroup>
<Content Include="*.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<Content Include="Resources\**\*">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="AIDA64.SensorValues.Net" Version="1.0.0" />
<PackageReference Include="MoBro.Plugin.SDK" Version="0.3.0" PrivateAssets="all" />
</ItemGroup>
</Project>