-
Notifications
You must be signed in to change notification settings - Fork 81
/
Copy pathAntlrBuildTask.csproj
56 lines (48 loc) · 1.9 KB
/
AntlrBuildTask.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
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net40</TargetFrameworks>
<Description>The C# port of ANTLR 3</Description>
<Company>Tunnel Vision Laboratories, LLC</Company>
<Copyright>Copyright © Sam Harwell 2011</Copyright>
<Version>$(ANTLRVersion)</Version>
<FileVersion>$(ANTLRFileVersion)</FileVersion>
<InformationalVersion>$(ANTLRInformationalVersion)</InformationalVersion>
<OutputPath>..\bin\$(Configuration)\</OutputPath>
</PropertyGroup>
<Choose>
<When Condition="'$(TargetFramework)' == 'netstandard2.0'">
<ItemGroup>
<PackageReference Include="Microsoft.Build.Framework" Version="14.3" />
<PackageReference Include="Microsoft.Build.Tasks.Core" Version="14.3" />
</ItemGroup>
<PropertyGroup>
<DefineConstants>$(DefineConstants);NETSTANDARD</DefineConstants>
</PropertyGroup>
</When>
<When Condition="'$(TargetFramework)' == 'net40'">
<ItemGroup>
<Reference Include="Microsoft.Build.Framework" />
<Reference Include="Microsoft.Build.Tasks.v4.0" />
<Reference Include="Microsoft.Build.Utilities.v4.0" />
</ItemGroup>
</When>
</Choose>
<ItemGroup>
<None Update="Antlr3.CodeGenerator.DefaultItems.props">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Antlr3.CodeGenerator.DefaultItems.targets">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Antlr3.CodeGenerator.props">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Antlr3.CodeGenerator.targets">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<None Update="Rules\*.xml" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>
</Project>