-
Notifications
You must be signed in to change notification settings - Fork 1
/
NodeBlock.Plugin.MachineLearning.csproj
75 lines (75 loc) · 3.65 KB
/
NodeBlock.Plugin.MachineLearning.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<PublishSingleFile>true</PublishSingleFile>
<PublishTrimmed>true</PublishTrimmed>
<PackageId>GraphLinq.MachineLearning</PackageId>
<Version>1.0.0</Version>
<Authors>GraphLinq Team</Authors>
<Company>GraphLinq</Company>
<PackageDescription>This package allow the GraphLinq Engine to use ML.NET</PackageDescription>
<RepositoryUrl>https://github.com/GraphLinq/GraphLinq.MachineLearning</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.0.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.ML" Version="2.0.1" />
<PackageReference Include="Microsoft.ML.FastTree" Version="2.0.1" />
<PackageReference Include="Microsoft.ML.TimeSeries" Version="2.0.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\GraphLinq.Encoding\NodeBlock.Engine.Encoding.csproj" />
<ProjectReference Include="..\GraphLinq.Engine\NodeBlock.Engine.csproj" />
</ItemGroup>
<ItemGroup Label="SentimentModel">
<None Include="SentimentModel.consumption.cs">
<DependentUpon>SentimentModel.mbconfig</DependentUpon>
</None>
<None Include="SentimentModel.training.cs">
<DependentUpon>SentimentModel.mbconfig</DependentUpon>
</None>
<None Include="SentimentModel.zip">
<DependentUpon>SentimentModel.mbconfig</DependentUpon>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup Label="SpamModel">
<None Include="SpamModel.consumption.cs">
<DependentUpon>SpamModel.mbconfig</DependentUpon>
</None>
<None Include="SpamModel.training.cs">
<DependentUpon>SpamModel.mbconfig</DependentUpon>
</None>
<None Include="SpamModel.zip">
<DependentUpon>SpamModel.mbconfig</DependentUpon>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup Label="PriceForecastModel">
<None Include="PriceForecastModel.consumption.cs">
<DependentUpon>PriceForecastModel.mbconfig</DependentUpon>
</None>
<None Include="PriceForecastModel.training.cs">
<DependentUpon>PriceForecastModel.mbconfig</DependentUpon>
</None>
<None Include="PriceForecastModel.zip">
<DependentUpon>PriceForecastModel.mbconfig</DependentUpon>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Condition=" '$(OS)' != 'Unix' " Command="copy /Y "$(TargetDir)$(ProjectName).dll" "$(SolutionDir)\GraphLinq.CLI\bin\Debug\net6.0\plugins"" />
<Exec Condition=" '$(OS)' != 'Unix' " Command="copy /Y "SentimentModel.zip" "$(SolutionDir)\GraphLinq.CLI\bin\Debug\net6.0"" />
<Exec Condition=" '$(OS)' != 'Unix' " Command="copy /Y "SpamModel.zip" "$(SolutionDir)\GraphLinq.CLI\bin\Debug\net6.0"" />
<Exec Condition=" '$(OS)' != 'Unix' " Command="copy /Y "PriceForecastModel.zip" "$(SolutionDir)\GraphLinq.CLI\bin\Debug\net6.0"" />
</Target>
</Project>