2018-05-22 10:11:50 +02:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
2018-05-31 19:53:48 +02:00
|
|
|
<PropertyGroup>
|
2018-05-26 06:53:25 +02:00
|
|
|
<TargetFramework>netcoreapp2.1</TargetFramework>
|
2018-05-22 10:11:50 +02:00
|
|
|
<!--<PublishWithAspNetCoreTargetManifest>false</PublishWithAspNetCoreTargetManifest>-->
|
|
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
|
|
<Compile Remove="wwwroot\assets\**" />
|
|
|
|
<Content Remove="wwwroot\assets\**" />
|
|
|
|
<EmbeddedResource Remove="wwwroot\assets\**" />
|
|
|
|
<None Remove="wwwroot\assets\**" />
|
|
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
|
|
<Content Include="wwwroot\assets\css\custom.css" CopyToOutputDirectory="Always" />
|
|
|
|
<Content Include="wwwroot\assets\img\qr-btc.png" CopyToOutputDirectory="Always" />
|
|
|
|
<Content Include="wwwroot\assets\img\qr-eth.png" CopyToOutputDirectory="Always" />
|
|
|
|
<Content Include="wwwroot\assets\img\qr-ltc.png" CopyToOutputDirectory="Always" />
|
|
|
|
<Content Include="wwwroot\assets\img\qr-neo.png" CopyToOutputDirectory="Always" />
|
|
|
|
<Content Include="wwwroot\assets\js\custom.js" CopyToOutputDirectory="Always" />
|
|
|
|
<Content Include="wwwroot\assets\js\analyzer-settings.js">
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
</Content>
|
|
|
|
<Content Include="wwwroot\assets\js\dca.js" CopyToOutputDirectory="Always" />
|
2019-11-12 00:36:18 +01:00
|
|
|
<None Include="nlog.config" CopyToOutputDirectory="Always" />
|
2018-05-22 10:11:50 +02:00
|
|
|
</ItemGroup>
|
2018-05-31 19:53:48 +02:00
|
|
|
<ItemGroup>
|
2019-02-17 15:45:00 +01:00
|
|
|
<PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" Version="2.5.1" />
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.All" Version="2.1.7" />
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel" Version="2.1.3" />
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="12.0.1" />
|
2018-05-22 10:11:50 +02:00
|
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\Core\Core.csproj" />
|
|
|
|
</ItemGroup>
|
|
|
|
<ProjectExtensions><VisualStudio><UserProperties Properties_4launchSettings_1json__JSONSchema="http://json.schemastore.org/composer" /></VisualStudio></ProjectExtensions>
|
|
|
|
</Project>
|