-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathGhostfolioAPI.csproj
More file actions
33 lines (28 loc) · 1.32 KB
/
Copy pathGhostfolioAPI.csproj
File metadata and controls
33 lines (28 loc) · 1.32 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
32
33
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AssemblyName>GhostfolioSidekick.$(MSBuildProjectName)</AssemblyName>
<RootNamespace>GhostfolioSidekick.$(MSBuildProjectName.Replace(" ", "_"))</RootNamespace>
</PropertyGroup>
<PropertyGroup>
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="FuzzySharp" Version="2.0.2" />
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="9.0.9" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="9.0.9" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="9.0.9" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.4" />
<PackageReference Include="Polly" Version="8.6.4" />
<PackageReference Include="RestSharp" Version="112.1.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Configuration\Configuration.csproj" />
<ProjectReference Include="..\Cryptocurrency\Cryptocurrency.csproj" />
<ProjectReference Include="..\ExternalDataProvider\ExternalDataProvider.csproj" />
<ProjectReference Include="..\Model\Model.csproj" />
<ProjectReference Include="..\Parsers\Parsers.csproj" />
</ItemGroup>
</Project>