-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathdcrptd-miner.csproj
55 lines (55 loc) · 2.23 KB
/
dcrptd-miner.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
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="Current">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<RootNamespace>dcrpt_miner</RootNamespace>
<FileUpgradeFlags>
</FileUpgradeFlags>
<OldToolsVersion>2.0</OldToolsVersion>
<UpgradeBackupLocation />
<ProjectGuid>{F34CD0DB-0008-4F9D-949F-1CFF1AB068DE}</ProjectGuid>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Optimize>true</Optimize>
<PublishReadyToRun>true</PublishReadyToRun>
<PublishSingleFile>true</PublishSingleFile>
<Version>2.3.1</Version>
</PropertyGroup>
<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
<PackageReference Include="LibreHardwareMonitorLib" Version="0.9.1-pre136" />
<PackageReference Include="Microsoft.AspNetCore.SignalR.Client" Version="6.0.1" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="6.0.1" />
<PackageReference Include="Microsoft.Extensions.Http" Version="6.0.0" />
</ItemGroup>
<ItemGroup>
<Content Include="config.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="config.sha256bmb.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="config.pufferfish2bmb.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<Content Include="Algorithms/sha256bmb/sha256_lib.dll">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="Algorithms/sha256bmb/sha256_lib.so">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="Algorithms/sha256bmb/sha256_pow.cl">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="Algorithms/pufferfish2bmb/pufferfish2.dll">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="Algorithms/pufferfish2bmb/pufferfish2.so">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="Algorithms/pufferfish2bmb/pufferfish2">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>