-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHeddle.Language.csproj
More file actions
42 lines (35 loc) · 1.16 KB
/
Copy pathHeddle.Language.csproj
File metadata and controls
42 lines (35 loc) · 1.16 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net6.0;net8.0;net10.0</TargetFrameworks>
<AssemblyOriginatorKeyFile>..\..\heddle.snk</AssemblyOriginatorKeyFile>
<Version>2.0.0$(VersionSuffix)</Version>
<Product>Heddle.Language</Product>
<PackageId>Heddle.Language</PackageId>
<Description>Text Template Engine Language Parser</Description>
<IncludeSymbols>true</IncludeSymbols>
<LangVersion>latest</LangVersion>
<SignAssembly>true</SignAssembly>
<NoWarn>CS3021</NoWarn>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Antlr4.Runtime.Standard" Version="4.13.1" />
</ItemGroup>
<ItemGroup>
<Compile Remove="js\**" />
<Compile Remove="ace_build\**" />
</ItemGroup>
<ItemGroup>
<Compile Remove="ace_build\**" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Remove="js\**" />
<EmbeddedResource Remove="ace_build\**" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\heddle.snk">
<Link>heddle.snk</Link>
</None>
<None Include="..\..\README.md" Pack="true" PackagePath="\" />
<None Remove="ace_build\**" />
</ItemGroup>
</Project>