-
-
Notifications
You must be signed in to change notification settings - Fork 65
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
43 lines (33 loc) · 1.71 KB
/
Directory.Build.props
File metadata and controls
43 lines (33 loc) · 1.71 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
<Project>
<PropertyGroup>
<Product>DelegateDecompiler</Product>
<Description />
<Authors>Alexander Zaytsev</Authors>
<Copyright>Copyright (c) Alexander Zaytsev 2012 - 2024</Copyright>
<Description>A library which is able to decompile a delegate or a method body to its lambda representation</Description>
<PackageTags>LINQ computed-properties computedproperties decompiler decompilation computed properties expressions expression-tree IL</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/hazzik/DelegateDecompiler</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<!--<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>$(SolutionDir)\DelegateDecompiler.snk</AssemblyOriginatorKeyFile>-->
<FileVersion>$(Version)</FileVersion>
<PublishRepositoryUrl>True</PublishRepositoryUrl>
<EmbedUntrackedSources>True</EmbedUntrackedSources>
<IncludeSymbols>True</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<LangVersion>12.0</LangVersion>
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
<NuGetAudit>true</NuGetAudit>
<NuGetAuditLevel>low</NuGetAuditLevel>
<NuGetAuditMode>direct</NuGetAuditMode>
<ContinuousIntegrationBuild Condition="'$(CI)' != ''">$(CI)</ContinuousIntegrationBuild>
</PropertyGroup>
<ItemGroup>
<!--<PackageReference Include="GitVersion.MsBuild" Version="6.1.0" PrivateAssets="All" />-->
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.3" PrivateAssets="All" />
</ItemGroup>
<ItemGroup>
<Content Include="../../README.md" PackagePath="/" />
</ItemGroup>
</Project>