-
Notifications
You must be signed in to change notification settings - Fork 3
/
Peeker.NuGet.csproj
36 lines (31 loc) · 1.37 KB
/
Peeker.NuGet.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<NoBuild>true</NoBuild>
<IsTool>true</IsTool>
<IncludeBuildOutput>false</IncludeBuildOutput>
<GenerateDependencyFile>false</GenerateDependencyFile>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<PackageOutputPath Condition="'$(PackageOutputPath)' == ''">package\</PackageOutputPath>
<NugetPackageName Condition="'$(NugetPackageName)' == ''">Peeker</NugetPackageName>
<PackageId>$(NugetPackageName)</PackageId>
<Authors>Microsoft</Authors>
<Copyright>Microsoft</Copyright>
<PackageDescription>.NET binary analyzer</PackageDescription>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectURL>https://github.com/microsoft/peeker</PackageProjectURL>
<PackageTags>SDL;SDT;secure development tools;security;static analysis;Peeker</PackageTags>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/microsoft/peeker</RepositoryUrl>
</PropertyGroup>
<ItemGroup>
<None Include="Peeker\bin\$(Configuration)\net6.0\*.dll; Peeker\bin\$(Configuration)\net6.0\*.json">
<Pack>true</Pack>
<PackagePath>tools\</PackagePath>
</None>
<None Include="NOTICE.md">
<Pack>true</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
</Project>