-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathHyperbee.Expressions.Compiler.csproj
More file actions
45 lines (38 loc) · 1.66 KB
/
Hyperbee.Expressions.Compiler.csproj
File metadata and controls
45 lines (38 loc) · 1.66 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
43
44
45
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<Authors>Stillpoint Software, Inc.</Authors>
<PackageId>Hyperbee.Expressions.Compiler</PackageId>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageTags>expression-tree;expressions;compiler;il;emit</PackageTags>
<PackageIcon>icon.png</PackageIcon>
<IsPackable>true</IsPackable>
<PackageProjectUrl>https://stillpoint-software.github.io/hyperbee.expressions/</PackageProjectUrl>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<Copyright>Stillpoint Software, Inc.</Copyright>
<Title>Hyperbee Expressions Compiler</Title>
<Description>High-performance IR-based expression compiler for .NET.</Description>
<RepositoryUrl>https://github.com/Stillpoint-Software/hyperbee.expressions</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageReleaseNotes>https://github.com/Stillpoint-Software/Hyperbee.Expressions/releases/latest</PackageReleaseNotes>
</PropertyGroup>
<ItemGroup>
<None Include="README.md"
Pack="true"
PackagePath=""
Link="README.md" />
</ItemGroup>
<ItemGroup>
<None Update="$(MSBuildProjectName).csproj.DotSettings" Visible="false" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Hyperbee.Expressions\Hyperbee.Expressions.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Update="Microsoft.SourceLink.GitHub">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>