-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWowLogScan.fsproj
79 lines (79 loc) · 4.13 KB
/
WowLogScan.fsproj
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
76
77
78
79
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<Import Project="packages\FSharp.Compiler.Tools.10.0.2\build\FSharp.Compiler.Tools.props" Condition="Exists('packages\FSharp.Compiler.Tools.10.0.2\build\FSharp.Compiler.Tools.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{C75B3D10-FF0D-4781-91B2-7F6036693610}</ProjectGuid>
<OutputType>Exe</OutputType>
<RootNamespace>WowLogScan</RootNamespace>
<AssemblyName>WowLogScan</AssemblyName>
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<DocumentationFile>bin\$(Configuration)\$(AssemblyName).xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>portable</DebugType>
<Optimize>false</Optimize>
<Tailcalls>false</Tailcalls>
<OutputPath>bin\$(Configuration)\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<WarningLevel>3</WarningLevel>
<OtherFlags>--warnon:1182</OtherFlags>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<Tailcalls>true</Tailcalls>
<OutputPath>bin\$(Configuration)\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<WarningLevel>3</WarningLevel>
<OtherFlags>--warnon:1182</OtherFlags>
</PropertyGroup>
<ItemGroup>
<Reference Include="FParsec, Version=1.0.0.0, Culture=neutral, PublicKeyToken=40ccfc0a09edbb5d">
<HintPath>packages\FParsec.1.1.1\lib\net45\FParsec.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="FParsecCS, Version=1.0.0.0, Culture=neutral, PublicKeyToken=40ccfc0a09edbb5d">
<HintPath>packages\FParsec.1.1.1\lib\net45\FParsecCS.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="mscorlib" />
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Numerics" />
<Reference Include="FSharp.Core">
<HintPath>packages\FSharp.Core.4.5.2\lib\net45\FSharp.Core.dll</HintPath>
</Reference>
<Reference Include="System.ValueTuple, Version=4.0.2.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51">
<HintPath>packages\System.ValueTuple.4.4.0\lib\net47\System.ValueTuple.dll</HintPath>
<Private>True</Private>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="ProgramState.fs" />
<Compile Include="AssemblyInfo.fs" />
<Compile Include="TargetType.fs" />
<Compile Include="CombatlogType.fs" />
<Compile Include="CombatlogToken.fs" />
<Compile Include="Target.fs" />
<Compile Include="CombatlogSyntax.fs" />
<Compile Include="Buffs.fs" />
<Compile Include="GearPiece.fs" />
<Compile Include="EventLog.fs" />
<Compile Include="Parser.fs" />
<Compile Include="RaidState.fs" />
<Compile Include="ScanWorldBuffs.fs" />
<Compile Include="ScanEnchants.fs" />
<Compile Include="ScanConsumablesInCombat.fs" />
<Compile Include="ScanUnits.fs" />
<Compile Include="EffortScore.fs" />
<Compile Include="ScanCombatStart.fs" />
<Compile Include="Program.fs" />
<Content Include="packages.config" />
</ItemGroup>
<Import Project="$(FSharpTargetsPath)" Condition="Exists('$(FSharpTargetsPath)')" />
</Project>