|
3 | 3 | <PropertyGroup>
|
4 | 4 | <OutputType>Library</OutputType>
|
5 | 5 | <TargetFramework>netcoreapp3.1</TargetFramework>
|
6 |
| - <PackageId>Microsoft.ApplicationInspector.Commands</PackageId> |
| 6 | + <PackageId>Microsoft.CST.ApplicationInspector.Commands</PackageId> |
7 | 7 | <PackageVersion>0.0.0-placeholder</PackageVersion>
|
8 | 8 | <PackageProjectUrl>https://github.com/microsoft/ApplicationInspector</PackageProjectUrl>
|
9 | 9 | <RepositoryUrl>https://github.com/microsoft/ApplicationInspector</RepositoryUrl>
|
10 | 10 | <PackageTags>Security Static Analyzer</PackageTags>
|
11 | 11 | <Description>Characterizes software features.</Description>
|
12 |
| - <Copyright>(c) Microsoft Corporation. All rights reserved</Copyright> |
| 12 | + <copyright>© Microsoft Corporation. All rights reserved.</copyright> |
13 | 13 | <HighEntropyVA>true</HighEntropyVA>
|
14 | 14 | <Product>Application Inspector</Product>
|
15 | 15 | <Authors>Microsoft</Authors>
|
16 | 16 | <Version>0.0.0-placeholder</Version>
|
17 | 17 | <AssemblyName>ApplicationInspector.Commands</AssemblyName>
|
18 | 18 | <RootNamespace>Microsoft.ApplicationInspector.Commands</RootNamespace>
|
19 |
| - <StartupObject></StartupObject> |
20 | 19 | <Company>Microsoft</Company>
|
21 | 20 | <SignAssembly>true</SignAssembly>
|
22 |
| - <AssemblyVersion>1.0.28.0</AssemblyVersion> |
23 |
| - <FileVersion>1.0.28.0</FileVersion> |
24 |
| - <GeneratePackageOnBuild>true</GeneratePackageOnBuild> |
25 |
| - <ApplicationIcon /> |
| 21 | + <AssemblyVersion>0.0.0</AssemblyVersion> |
| 22 | + <FileVersion>0.0.0</FileVersion> |
| 23 | + <GeneratePackageOnBuild>false</GeneratePackageOnBuild> |
| 24 | + <PackageLicenseFile>LICENSE.txt</PackageLicenseFile> |
| 25 | + <PackageIcon>icon-128.png</PackageIcon> |
| 26 | + <TargetsForTfmSpecificBuildOutput>$(TargetsForTfmSpecificBuildOutput);CopyProjectReferencesToPackage</TargetsForTfmSpecificBuildOutput> |
26 | 27 | </PropertyGroup>
|
27 | 28 |
|
| 29 | + <Target DependsOnTargets="ResolveReferences" Name="CopyProjectReferencesToPackage"> |
| 30 | + <ItemGroup> |
| 31 | + <BuildOutputInPackage Include="@(ReferenceCopyLocalPaths->WithMetadataValue('ReferenceSourceTarget', 'ProjectReference'))"/> |
| 32 | + </ItemGroup> |
| 33 | + </Target> |
| 34 | + |
28 | 35 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
29 | 36 | <DefineConstants>TRACE</DefineConstants>
|
30 | 37 | <PlatformTarget>AnyCPU</PlatformTarget>
|
|
58 | 65 | </EmbeddedResource>
|
59 | 66 | </ItemGroup>
|
60 | 67 |
|
61 |
| - <ItemGroup> |
62 |
| - <Compile Remove="linux\**" /> |
63 |
| - <EmbeddedResource Remove="linux\**" /> |
64 |
| - <None Remove="linux\**" /> |
65 |
| - </ItemGroup> |
66 |
| - |
67 | 68 | <ItemGroup>
|
68 | 69 | <None Update="rules\**">
|
69 | 70 | <CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
70 | 71 | </None>
|
71 | 72 | </ItemGroup>
|
72 | 73 |
|
73 | 74 | <ItemGroup>
|
74 |
| - <ProjectReference Include="..\MultiExtractor\MultiExtractor.csproj" /> |
75 |
| - <ProjectReference Include="..\RulesEngine\AppInspector.RulesEngine.csproj" /> |
| 75 | + <ProjectReference Include="..\MultiExtractor\MultiExtractor.csproj"> |
| 76 | + <ReferenceOutputAssembly>true</ReferenceOutputAssembly> |
| 77 | + <IncludeAssets>MultiExtractor.dll</IncludeAssets> |
| 78 | + </ProjectReference> |
| 79 | + |
| 80 | + <ProjectReference Include="..\RulesEngine\AppInspector.RulesEngine.csproj"> |
| 81 | + <ReferenceOutputAssembly>true</ReferenceOutputAssembly> |
| 82 | + <IncludeAssets>ApplicationInspector.RulesEngine.dll</IncludeAssets> |
| 83 | + </ProjectReference> |
76 | 84 | </ItemGroup>
|
77 | 85 |
|
78 |
| - |
79 |
| - <ProjectExtensions><VisualStudio><UserProperties /></VisualStudio></ProjectExtensions> |
| 86 | + <ItemGroup> |
| 87 | + <None Include="..\LICENSE.txt" Pack="true" PackagePath=""/> |
| 88 | + <None Include="..\icon-128.png" Pack="true" PackagePath=""/> |
| 89 | + </ItemGroup> |
80 | 90 |
|
81 | 91 | </Project>
|
0 commit comments