-
Notifications
You must be signed in to change notification settings - Fork 91
Expand file tree
/
Copy pathEddiDataProviderService.csproj
More file actions
31 lines (31 loc) · 1.4 KB
/
EddiDataProviderService.csproj
File metadata and controls
31 lines (31 loc) · 1.4 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Library</OutputType>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
<OutputPath>..\bin\Debug\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
<OutputPath>..\bin\Release\</OutputPath>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Properties\**" />
<EmbeddedResource Remove="Properties\**" />
<None Remove="Properties\**" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\ConfigService\EddiConfigService.csproj" />
<ProjectReference Include="..\DataDefinitions\EddiDataDefinitions.csproj" />
<ProjectReference Include="..\EddiSpanshService\EddiSpanshService.csproj" />
<ProjectReference Include="..\StarMapService\EddiStarMapService.csproj" />
<ProjectReference Include="..\Utilities\Utilities.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="JetBrains.Annotations" />
<PackageReference Include="Microsoft.CSharp" />
<PackageReference Include="Newtonsoft.Json" />
<PackageReference Include="System.Collections.Immutable" />
<PackageReference Include="System.Data.SQLite.Core" />
<PackageReference Include="System.Runtime.Caching" />
</ItemGroup>
</Project>