-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNodeBlock.Plugin.Charting.csproj
42 lines (35 loc) · 1.69 KB
/
NodeBlock.Plugin.Charting.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<PublishSingleFile>true</PublishSingleFile>
<PublishTrimmed>true</PublishTrimmed>
<PackageId>GraphLinq.Charting</PackageId>
<Version>1.0.0</Version>
<Authors>GraphLinq Team</Authors>
<Company>GraphLinq</Company>
<PackageDescription>This package allow the GraphLinq Engine to generate charts.</PackageDescription>
<RepositoryUrl>https://github.com/GraphLinq/GraphLinq.Charting</RepositoryUrl>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<GenerateSerializationAssemblies>Auto</GenerateSerializationAssemblies>
<DebugType>full</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AngleSharp" Version="1.0.0-alpha-844" />
<PackageReference Include="Costura.Fody" Version="5.3.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="QuickChart" Version="2.3.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\GraphLinq.Encoding\NodeBlock.Engine.Encoding.csproj" />
<ProjectReference Include="..\GraphLinq.Engine\NodeBlock.Engine.csproj" />
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="copy /Y "$(TargetDir)$(ProjectName).dll" "$(SolutionDir)\GraphLinq.CLI\bin\Debug\net6.0\plugins"" />
</Target>
</Project>