1
|
<?xml version="1.0" encoding="utf-8"?>
|
2
|
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
3
|
<Import Project="..\packages\Microsoft.ML.1.5.5\build\netstandard2.0\Microsoft.ML.props" Condition="Exists('..\packages\Microsoft.ML.1.5.5\build\netstandard2.0\Microsoft.ML.props')" />
|
4
|
<Import Project="..\packages\Microsoft.ML.CpuMath.1.5.5\build\netstandard2.0\Microsoft.ML.CpuMath.props" Condition="Exists('..\packages\Microsoft.ML.CpuMath.1.5.5\build\netstandard2.0\Microsoft.ML.CpuMath.props')" />
|
5
|
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
6
|
<PropertyGroup>
|
7
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
8
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
9
|
<ProjectGuid>{B49B2821-751C-4032-8637-B4E9282DCF06}</ProjectGuid>
|
10
|
<OutputType>Exe</OutputType>
|
11
|
<RootNamespace>ServerApp</RootNamespace>
|
12
|
<AssemblyName>ServerApp</AssemblyName>
|
13
|
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
|
14
|
<FileAlignment>512</FileAlignment>
|
15
|
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
16
|
<Deterministic>true</Deterministic>
|
17
|
<NuGetPackageImportStamp>
|
18
|
</NuGetPackageImportStamp>
|
19
|
</PropertyGroup>
|
20
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
21
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
22
|
<DebugSymbols>true</DebugSymbols>
|
23
|
<DebugType>full</DebugType>
|
24
|
<Optimize>false</Optimize>
|
25
|
<OutputPath>bin\Debug\</OutputPath>
|
26
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
27
|
<ErrorReport>prompt</ErrorReport>
|
28
|
<WarningLevel>4</WarningLevel>
|
29
|
</PropertyGroup>
|
30
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
31
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
32
|
<DebugType>pdbonly</DebugType>
|
33
|
<Optimize>true</Optimize>
|
34
|
<OutputPath>bin\Release\</OutputPath>
|
35
|
<DefineConstants>TRACE</DefineConstants>
|
36
|
<ErrorReport>prompt</ErrorReport>
|
37
|
<WarningLevel>4</WarningLevel>
|
38
|
</PropertyGroup>
|
39
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
|
40
|
<DebugSymbols>true</DebugSymbols>
|
41
|
<OutputPath>bin\x64\Debug\</OutputPath>
|
42
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
43
|
<DebugType>full</DebugType>
|
44
|
<PlatformTarget>x64</PlatformTarget>
|
45
|
<LangVersion>7.3</LangVersion>
|
46
|
<ErrorReport>prompt</ErrorReport>
|
47
|
<Prefer32Bit>true</Prefer32Bit>
|
48
|
<RestoreProjectStyle>PackageReference</RestoreProjectStyle>
|
49
|
</PropertyGroup>
|
50
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
|
51
|
<OutputPath>bin\x64\Release\</OutputPath>
|
52
|
<DefineConstants>TRACE</DefineConstants>
|
53
|
<Optimize>true</Optimize>
|
54
|
<DebugType>pdbonly</DebugType>
|
55
|
<PlatformTarget>x64</PlatformTarget>
|
56
|
<LangVersion>7.3</LangVersion>
|
57
|
<ErrorReport>prompt</ErrorReport>
|
58
|
<Prefer32Bit>true</Prefer32Bit>
|
59
|
</PropertyGroup>
|
60
|
<PropertyGroup>
|
61
|
<StartupObject>ServerApp.Program</StartupObject>
|
62
|
</PropertyGroup>
|
63
|
<ItemGroup>
|
64
|
<Reference Include="System" />
|
65
|
<Reference Include="System.Core" />
|
66
|
<Reference Include="System.Xml.Linq" />
|
67
|
<Reference Include="System.Data.DataSetExtensions" />
|
68
|
<Reference Include="Microsoft.CSharp" />
|
69
|
<Reference Include="System.Data" />
|
70
|
<Reference Include="System.Net.Http" />
|
71
|
<Reference Include="System.Xml" />
|
72
|
</ItemGroup>
|
73
|
<ItemGroup>
|
74
|
<Compile Include="Predictor\IPredictor.cs" />
|
75
|
<Compile Include="Predictor\ModelInput.cs" />
|
76
|
<Compile Include="Predictor\ModelOutput.cs" />
|
77
|
<Compile Include="Predictor\NaiveBayesClassifier.cs" />
|
78
|
<Compile Include="Parser\InputData\CsvDataLoader.cs" />
|
79
|
<Compile Include="Parser\InputData\JisInstance.cs" />
|
80
|
<Compile Include="Parser\InputData\LogInInstance.cs" />
|
81
|
<Compile Include="Parser\InputData\WeatherInstance.cs" />
|
82
|
<Compile Include="Parser\OutputInfo\ActivityInfo.cs" />
|
83
|
<Compile Include="Parser\OutputInfo\WeatherConditions.cs" />
|
84
|
<Compile Include="Parser\OutputInfo\WeatherInfo.cs" />
|
85
|
<Compile Include="Parser\Parsers\DataParser.cs" />
|
86
|
<Compile Include="Parser\Parsers\JisParser.cs" />
|
87
|
<Compile Include="Parser\Parsers\LogInParser.cs" />
|
88
|
<Compile Include="Parser\Parsers\TagInfo.cs" />
|
89
|
<Compile Include="Parser\Parsers\WeatherParser.cs" />
|
90
|
<Compile Include="Program.cs" />
|
91
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
92
|
</ItemGroup>
|
93
|
<ItemGroup>
|
94
|
<None Include="App.config" />
|
95
|
<None Include="data\jis\OD_ZCU_JIS_06_2019.CSV">
|
96
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
97
|
</None>
|
98
|
<None Include="data\jis\OD_ZCU_JIS_09_2019.CSV">
|
99
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
100
|
</None>
|
101
|
<None Include="data\jis\OD_ZCU_JIS_10_2019.CSV">
|
102
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
103
|
</None>
|
104
|
<None Include="data\jis\OD_ZCU_JIS_11_2019.CSV">
|
105
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
106
|
</None>
|
107
|
<None Include="data\jis\OD_ZCU_JIS_13_2019.CSV">
|
108
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
109
|
</None>
|
110
|
<None Include="data\jis\OD_ZCU_JIS_12_2019.CSV">
|
111
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
112
|
</None>
|
113
|
<None Include="data\login\OD_ZCU_STROJE_06_2019.CSV">
|
114
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
115
|
</None>
|
116
|
<None Include="data\login\OD_ZCU_STROJE_09_2019.CSV">
|
117
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
118
|
</None>
|
119
|
<None Include="data\login\OD_ZCU_STROJE_10_2019.CSV">
|
120
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
121
|
</None>
|
122
|
<None Include="data\login\OD_ZCU_STROJE_11_2019.CSV">
|
123
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
124
|
</None>
|
125
|
<None Include="data\login\OD_ZCU_STROJE_12_2019.CSV">
|
126
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
127
|
</None>
|
128
|
<None Include="data\login\OD_ZCU_STROJE_13_2019.CSV">
|
129
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
130
|
</None>
|
131
|
<None Include="data\weather\OD_ZCU_POCASI_13_2019.CSV">
|
132
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
133
|
</None>
|
134
|
<None Include="data\weather\OD_ZCU_POCASI_06_2019.CSV">
|
135
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
136
|
</None>
|
137
|
<None Include="data\weather\OD_ZCU_POCASI_09_2019.CSV">
|
138
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
139
|
</None>
|
140
|
<None Include="data\weather\OD_ZCU_POCASI_10_2019.CSV">
|
141
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
142
|
</None>
|
143
|
<None Include="data\weather\OD_ZCU_POCASI_11_2019.CSV">
|
144
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
145
|
</None>
|
146
|
<None Include="data\weather\OD_ZCU_POCASI_12_2019.CSV">
|
147
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
148
|
</None>
|
149
|
<None Include="packages.config" />
|
150
|
</ItemGroup>
|
151
|
<ItemGroup>
|
152
|
<PackageReference Include="Microsoft.ML">
|
153
|
<Version>1.5.2</Version>
|
154
|
</PackageReference>
|
155
|
<PackageReference Include="System.Runtime.CompilerServices.Unsafe">
|
156
|
<Version>5.0.0</Version>
|
157
|
</PackageReference>
|
158
|
</ItemGroup>
|
159
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
160
|
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
|
161
|
<PropertyGroup>
|
162
|
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
|
163
|
</PropertyGroup>
|
164
|
<Error Condition="!Exists('..\packages\Microsoft.ML.CpuMath.1.5.5\build\netstandard2.0\Microsoft.ML.CpuMath.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Microsoft.ML.CpuMath.1.5.5\build\netstandard2.0\Microsoft.ML.CpuMath.props'))" />
|
165
|
<Error Condition="!Exists('..\packages\Microsoft.ML.1.5.5\build\netstandard2.0\Microsoft.ML.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Microsoft.ML.1.5.5\build\netstandard2.0\Microsoft.ML.props'))" />
|
166
|
<Error Condition="!Exists('..\packages\Microsoft.ML.1.5.5\build\netstandard2.0\Microsoft.ML.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Microsoft.ML.1.5.5\build\netstandard2.0\Microsoft.ML.targets'))" />
|
167
|
</Target>
|
168
|
<Import Project="..\packages\Microsoft.ML.1.5.5\build\netstandard2.0\Microsoft.ML.targets" Condition="Exists('..\packages\Microsoft.ML.1.5.5\build\netstandard2.0\Microsoft.ML.targets')" />
|
169
|
</Project>
|