forked from microsoft/Quantum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLithiumHydrideGUI.csproj
40 lines (33 loc) · 1.13 KB
/
LithiumHydrideGUI.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
<ItemGroup>
<Compile Remove="LiHData\**" />
<Compile Remove="node_modules\**" />
<EmbeddedResource Remove="LiHData\**" />
<EmbeddedResource Remove="node_modules\**" />
<None Remove="LiHData\**" />
<None Remove="node_modules\**" />
</ItemGroup>
<ItemGroup>
<None Remove="index.html" />
<None Remove="main.js" />
<None Remove="package-lock.json" />
<None Remove="package.json" />
<None Remove="renderer.js" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Quantum.Chemistry" Version="0.28.302812" />
<PackageReference Include="Microsoft.Quantum.Simulators" Version="0.28.302812" />
<PackageReference Include="Mono.Options" Version="5.3.0.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\MolecularHydrogen\MolecularHydrogen.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
</ItemGroup>
</Project>