forked from k-john-gough/gppg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGPPG.csproj
91 lines (82 loc) · 3.69 KB
/
GPPG.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>net472;net6.0</TargetFrameworks>
<AssemblyName>Gppg</AssemblyName>
<AssemblyTitle>Gppg</AssemblyTitle>
<Company>QUT</Company>
<Configuration></Configuration>
<Copyright>Copyright © Wayne Kelly, John Gough 2005-2014</Copyright>
<Description>Gardens Point Parser Generator version 1.5.2 (2014-08-23)</Description>
<FileVersion>1.5.2</FileVersion>
<NeutralLanguage>en-US</NeutralLanguage>
<Product>Gppg</Product>
<RootNamespace>QUT.Gppg</RootNamespace>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
</PropertyGroup>
<!-- Pack settings -->
<PropertyGroup>
<NoPackageAnalysis>true</NoPackageAnalysis>
<NuspecFile>MSBuild/Gppg.nuspec</NuspecFile>
<IntermediatePackDir>$(MSBuildProjectDirectory)/bin/$(Configuration)/publish/</IntermediatePackDir>
<PublishDir>$(IntermediatePackDir)$(TargetFramework)/</PublishDir>
<NuspecProperties>publishDir=$([MSBuild]::NormalizeDirectory($(IntermediatePackDir)))</NuspecProperties>
<RepositoryUrl>https://github.com/asnarnd/gppg</RepositoryUrl>
</PropertyGroup>
<!-- Executes /t:Publish for all target frameworks before packing -->
<Target Name="NugetCrossTarget" AfterTargets="Build" Condition="'$(TargetFrameworks)' != ''">
<ItemGroup>
<_TargetFramework Include="$(TargetFrameworks)" />
</ItemGroup>
<MSBuild Projects="$(MSBuildProjectFullPath)" Targets="Publish" Properties="TargetFramework=%(_TargetFramework.Identity)" />
</Target>
<Target Name="NugetSingleTarget" AfterTargets="Build" Condition="'$(TargetFrameworks)' == ''">
<MSBuild Projects="$(MSBuildProjectFullPath)" Targets="Publish" />
</Target>
<ItemGroup>
<GplexFile Include="ParserGenerator\SpecFiles\ScanAction.lex">
<OutputFile>ScanAction.cs</OutputFile>
</GplexFile>
<GplexFile Include="ParserGenerator\SpecFiles\gppg.lex">
<OutputFile>Scanner.cs</OutputFile>
</GplexFile>
<GppgFile Include="ParserGenerator\SpecFiles\gppg.y">
<OutputFile>Parser.cs</OutputFile>
<Arguments>/gplex /nolines</Arguments>
</GppgFile>
</ItemGroup>
<ItemGroup>
<PackageReference Include="ASNA.Gplex.Tool" Version="0.0.1-preview1" PrivateAssets="All" />
<PackageReference Include="ASNA.Gppg.Tool" Version="0.0.1-preview1" PrivateAssets="All" />
<PackageReference Include="System.Text.Json" Version="8.0.4" />
</ItemGroup>
<ItemGroup>
<!-- Added explicitly for 'rebuild' target that somehow excludes them when
they don't already exist (they are generated, and supposedly re-added, by
GplexTool). -->
<Compile Remove="GplexBuffers.cs" />
<Compile Remove="Parser.cs" />
<Compile Remove="ScanAction.cs" />
<Compile Remove="Scanner.cs" />
<Compile Include="GplexBuffers.cs" />
<Compile Include="Parser.cs" />
<Compile Include="ScanAction.cs" />
<Compile Include="Scanner.cs" />
</ItemGroup>
<!-- Legacy assembly attributes. -->
<ItemGroup>
<AssemblyAttribute Include="System.Reflection.AssemblyTrademarkAttribute">
<_Parameter1></_Parameter1>
</AssemblyAttribute>
<AssemblyAttribute Include="System.Reflection.AssemblyCultureAttribute">
<_Parameter1></_Parameter1>
</AssemblyAttribute>
<AssemblyAttribute Include="System.Runtime.InteropServices.ComVisibleAttribute">
<_Parameter1>false</_Parameter1> <!--Requires MSBuild 17.7 -->
</AssemblyAttribute>
<AssemblyAttribute Include="System.Runtime.InteropServices.GuidAttribute">
<_Parameter1>6b5106e4-43bb-4a39-93df-9cc12f311d4f</_Parameter1>
</AssemblyAttribute>
</ItemGroup>
</Project>