This repository was archived by the owner on Mar 31, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathWorker.Logic.csproj
More file actions
36 lines (36 loc) · 1.82 KB
/
Worker.Logic.csproj
File metadata and controls
36 lines (36 loc) · 1.82 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyName>NuGet.Insights.Worker.Logic</AssemblyName>
<RootNamespace>NuGet.Insights.Worker</RootNamespace>
<EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles>
<CompilerGeneratedFilesOutputPath>Generated</CompilerGeneratedFilesOutputPath>
</PropertyGroup>
<ItemGroup>
<Compile Remove="$(CompilerGeneratedFilesOutputPath)\**\*.cs" />
<None Include="$(CompilerGeneratedFilesOutputPath)\**\*.cs" />
</ItemGroup>
<ItemGroup Condition="'$(EnableNPE)' != 'true'">
<Compile Remove="CatalogScan\CatalogScanDriverMetadata.Drivers.NPE.cs" />
<Compile Remove="CatalogScan\CatalogScanDriverType.Drivers.NPE.cs" />
<Compile Remove="Drivers\NuGetPackageExplorerToCsv\**\*" />
<Compile Remove="NuGetInsightsWorkerSettings.Drivers.NPE.cs" />
<Compile Remove="ServiceCollectionExtensions.Drivers.NPE.cs" />
</ItemGroup>
<ItemGroup Condition="'$(EnableCryptoAPI)' != 'true'">
<Compile Remove="CatalogScan\CatalogScanDriverMetadata.Drivers.CryptoAPI.cs" />
<Compile Remove="CatalogScan\CatalogScanDriverType.Drivers.CryptoAPI.cs" />
<Compile Remove="Drivers\PackageCertificateToCsv\**\*" />
<Compile Remove="NuGetInsightsWorkerSettings.Drivers.CryptoAPI.cs" />
<Compile Remove="ServiceCollectionExtensions.Drivers.CryptoAPI.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Magick.NET-Q16-AnyCPU" />
<PackageReference Include="Microsoft.Azure.Kusto.Ingest" />
<PackageReference Include="Microsoft.IdentityModel.Tokens" />
<PackageReference Include="Sylvan.Data.Csv" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Logic\Logic.csproj" />
<ProjectReference Include="..\SourceGenerator\SourceGenerator.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
</ItemGroup>
</Project>