-
Notifications
You must be signed in to change notification settings - Fork 0
/
Silverfish.csproj
43 lines (38 loc) · 1.16 KB
/
Silverfish.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFramework>net462</TargetFramework>
<RootNamespace>Silverfish</RootNamespace>
</PropertyGroup>
<ItemGroup>
<None Remove="data\CardDefs.xml" />
</ItemGroup>
<ItemGroup>
<Reference Include="GreyMagic">
<HintPath>..\..\GreyMagic.dll</HintPath>
<Private>false</Private>
</Reference>
<Reference Include="Hearthbuddy">
<HintPath>..\..\Hearthbuddy.exe</HintPath>
<Private>false</Private>
</Reference>
<Reference Include="HearthDb">
<HintPath>..\..\HearthDb.dll</HintPath>
</Reference>
<Reference Include="log4net">
<HintPath>..\..\log4net.dll</HintPath>
<Private>false</Private>
</Reference>
<Reference Include="Microsoft.Scripting">
<HintPath>..\..\Microsoft.Scripting.dll</HintPath>
<Private>false</Private>
</Reference>
<Reference Include="PresentationCore" />
<Reference Include="PresentationFramework" />
<Reference Include="System.Xaml" />
<Reference Include="WindowsBase" />
</ItemGroup>
<ItemGroup>
<Folder Include="data\" />
</ItemGroup>
</Project>