wasBayesSharp – Blame information for rev 3

Subversion Repositories:
Rev:
Rev Author Line No. Line
2 office 1 <?xml version="1.0" encoding="utf-8"?>
2 <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3 <PropertyGroup>
4 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6 <ProductVersion>8.0.30703</ProductVersion>
7 <SchemaVersion>2.0</SchemaVersion>
8 <ProjectGuid>{BD607AA2-7660-4946-8383-623E5E842BBC}</ProjectGuid>
9 <OutputType>Library</OutputType>
10 <AppDesignerFolder>Properties</AppDesignerFolder>
11 <RootNamespace>BayesSharp</RootNamespace>
12 <AssemblyName>BayesSharp</AssemblyName>
13 <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
14 <FileAlignment>512</FileAlignment>
15 </PropertyGroup>
16 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
17 <DebugSymbols>true</DebugSymbols>
18 <DebugType>full</DebugType>
19 <Optimize>false</Optimize>
20 <OutputPath>bin\Debug\</OutputPath>
21 <DefineConstants>DEBUG;TRACE</DefineConstants>
22 <ErrorReport>prompt</ErrorReport>
23 <WarningLevel>4</WarningLevel>
24 <CodeAnalysisRuleSet>ExtendedCorrectnessRules.ruleset</CodeAnalysisRuleSet>
25 <RunCodeAnalysis>false</RunCodeAnalysis>
26 </PropertyGroup>
27 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
28 <DebugType>pdbonly</DebugType>
29 <Optimize>true</Optimize>
30 <OutputPath>bin\Release\</OutputPath>
31 <DefineConstants>TRACE</DefineConstants>
32 <ErrorReport>prompt</ErrorReport>
33 <WarningLevel>4</WarningLevel>
34 <RunCodeAnalysis>false</RunCodeAnalysis>
35 </PropertyGroup>
36 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Mono|AnyCPU'">
37 <DebugSymbols>true</DebugSymbols>
38 <OutputPath>bin\Mono\</OutputPath>
39 <DefineConstants>TRACE;DEBUG;MONO</DefineConstants>
40 <DebugType>full</DebugType>
41 <PlatformTarget>AnyCPU</PlatformTarget>
42 <ErrorReport>prompt</ErrorReport>
43 <CodeAnalysisRuleSet>ExtendedCorrectnessRules.ruleset</CodeAnalysisRuleSet>
44 </PropertyGroup>
45 <ItemGroup>
46 <Reference Include="Newtonsoft.Json, Version=10.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
3 office 47 <HintPath>..\..\packages\Newtonsoft.Json.10.0.3\lib\net40\Newtonsoft.Json.dll</HintPath>
2 office 48 <Private>True</Private>
49 </Reference>
50 <Reference Include="System" />
51 <Reference Include="System.Core" />
52 <Reference Include="System.Xml.Linq" />
53 <Reference Include="System.Data.DataSetExtensions" />
54 <Reference Include="Microsoft.CSharp" />
55 <Reference Include="System.Data" />
56 <Reference Include="System.Xml" />
57 </ItemGroup>
58 <ItemGroup>
59 <Compile Include="BayesClassifier.cs" />
60 <Compile Include="TagData.cs" />
61 <Compile Include="BayesSimpleTextClassifier.cs" />
62 <Compile Include="Combiners\ICombiner.cs" />
63 <Compile Include="TagDictionary.cs" />
64 <Compile Include="Tokenizers\ITokenizer.cs" />
65 <Compile Include="Properties\AssemblyInfo.cs" />
66 <Compile Include="Combiners\RobinsonCombiner.cs" />
67 <Compile Include="Combiners\RobinsonFisherCombiner.cs" />
68 <Compile Include="Tokenizers\SimpleTextTokenizer.cs" />
69 </ItemGroup>
70 <ItemGroup>
71 <None Include="packages.config" />
72 </ItemGroup>
73 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
1 office 74 <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
75 Other similar extension points exist, see Microsoft.Common.targets.
76 <Target Name="BeforeBuild">
77 </Target>
78 <Target Name="AfterBuild">
79 </Target>
2 office 80 -->
1 office 81 </Project>