Skip to content

Commit

Permalink
Update build setup (#848)
Browse files Browse the repository at this point in the history
  • Loading branch information
dluc authored Oct 20, 2024
1 parent d762e9a commit ef6ec96
Show file tree
Hide file tree
Showing 25 changed files with 46 additions and 65 deletions.
1 change: 0 additions & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,6 @@ dotnet_diagnostic.CA1034.severity = none # Do not nest type. Alternatively, chan
dotnet_diagnostic.CA1054.severity = none # URI parameters should not be strings
dotnet_diagnostic.CA1062.severity = none # Disable null check, C# already does it for us
dotnet_diagnostic.CS1591.severity = none # Missing XML comment for publicly visible type or member
dotnet_diagnostic.CS8002.severity = none # Referenced assembly does not have a strong name.
dotnet_diagnostic.CA1805.severity = none # Member is explicitly initialized to its default value
dotnet_diagnostic.CA1822.severity = none # Member does not access instance data and can be marked as static
dotnet_diagnostic.CA1848.severity = none # For improved performance, use the LoggerMessage delegates
Expand Down
29 changes: 11 additions & 18 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -7,27 +7,23 @@
<PackageVersion Include="AWSSDK.S3" Version="3.7.405" />
<PackageVersion Include="Azure.AI.ContentSafety" Version="1.0.0" />
<PackageVersion Include="Azure.AI.FormRecognizer" Version="4.1.0" />
<PackageVersion Include="Azure.Core" Version="1.44.1" />
<PackageVersion Include="Azure.Extensions.AspNetCore.Configuration.Secrets" Version="1.3.2" />
<PackageVersion Include="Azure.Identity" Version="1.13.0" />
<PackageVersion Include="Azure.Search.Documents" Version="11.6.0" />
<PackageVersion Include="Azure.Storage.Blobs" Version="12.22.2" />
<PackageVersion Include="Azure.Storage.Queues" Version="12.20.1" />
<PackageVersion Include="ClosedXML" Version="0.104.1" />
<PackageVersion Include="ClosedXML" Version="0.104.1" /> <!-- missing strong name (CS8002) -->
<PackageVersion Include="Elastic.Clients.Elasticsearch" Version="8.12.1" />
<PackageVersion Include="Discord.Net" Version="3.16.0" />
<PackageVersion Include="Discord.Net" Version="3.16.0" /> <!-- missing strong name (CS8002) -->
<PackageVersion Include="DocumentFormat.OpenXml" Version="3.1.1" />
<PackageVersion Include="HtmlAgilityPack" Version="1.11.67" />
<PackageVersion Include="LLamaSharp" Version="0.16.0" />
<PackageVersion Include="LLamaSharp.Backend.Cpu" Version="0.16.0" />
<PackageVersion Include="LLamaSharp.Backend.Cuda11" Version="0.12.0" />
<PackageVersion Include="LLamaSharp.Backend.Cuda12" Version="0.12.0" />
<PackageVersion Include="LLamaSharp.Backend.OpenCL" Version="0.12.0" />
<PackageVersion Include="LLamaSharp" Version="0.16.0" /> <!-- missing strong name (CS8002) -->
<PackageVersion Include="LLamaSharp.Backend.Cpu" Version="0.16.0" /> <!-- missing strong name (CS8002) -->
<PackageVersion Include="LLamaSharp.Backend.Cuda11" Version="0.12.0" /> <!-- missing strong name (CS8002) -->
<PackageVersion Include="LLamaSharp.Backend.Cuda12" Version="0.12.0" /> <!-- missing strong name (CS8002) -->
<PackageVersion Include="LLamaSharp.Backend.OpenCL" Version="0.12.0" /> <!-- missing strong name (CS8002) -->
<PackageVersion Include="Microsoft.ApplicationInsights.AspNetCore" Version="2.22.0" />
<PackageVersion Include="Microsoft.Bcl.AsyncInterfaces" Version="8.0.0" />
<PackageVersion Include="Microsoft.Data.SqlClient" Version="5.2.2" />
<PackageVersion Include="Microsoft.Extensions.Configuration" Version="8.0.0" />
<PackageVersion Include="Microsoft.Extensions.Configuration.AzureAppConfiguration" Version="8.0.0" />
<PackageVersion Include="Microsoft.Extensions.Configuration.Json" Version="8.0.1" />
<PackageVersion Include="Microsoft.Extensions.DependencyInjection" Version="8.0.1" />
<PackageVersion Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.2" />
Expand All @@ -37,25 +33,22 @@
<PackageVersion Include="Microsoft.Extensions.Logging" Version="8.0.0" />
<PackageVersion Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.2" />
<PackageVersion Include="Microsoft.ML.OnnxRuntimeGenAI" Version="0.4.0" />
<PackageVersion Include="Microsoft.ML.Tokenizers" Version="0.22.0-preview.24378.1" />
<PackageVersion Include="Microsoft.ML.Tokenizers" Version="0.22.0-preview.24378.1" /> <!-- prerelease dependency (NU5104) -->
<PackageVersion Include="MongoDB.Driver.GridFS" Version="2.30.0" />
<PackageVersion Include="Moq" Version="4.20.72" />
<PackageVersion Include="Newtonsoft.Json" Version="13.0.3" />
<PackageVersion Include="OllamaSharp" Version="3.0.14" />
<PackageVersion Include="PdfPig" Version="0.1.9" />
<PackageVersion Include="Pgvector" Version="0.3.0" />
<PackageVersion Include="Pgvector" Version="0.3.0" /> <!-- missing strong name (CS8002) -->
<PackageVersion Include="Polly.Core" Version="8.4.2" />
<PackageVersion Include="RabbitMQ.Client" Version="6.8.1" />
<PackageVersion Include="NRedisStack" Version="0.13.0" />
<PackageVersion Include="NRedisStack" Version="0.13.0" /> <!-- missing strong name (CS8002) -->
<PackageVersion Include="ReadLine" Version="2.0.1" />
<PackageVersion Include="Swashbuckle.AspNetCore" Version="6.9.0" />
<PackageVersion Include="System.Linq.Async" Version="6.0.1" />
<PackageVersion Include="System.Memory.Data" Version="8.0.1" />
<PackageVersion Include="System.Numerics.Tensors" Version="8.0.0" />
</ItemGroup>
<!-- Security fixes -->
<ItemGroup>
<PackageVersion Include="System.Runtime.Caching" Version="8.0.1" />
<PackageVersion Include="System.Runtime.Caching" Version="8.0.1" /> <!-- version with security fixes -->
</ItemGroup>
<!-- KM examples -->
<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion applications/evaluation/Evaluation.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>net8.0</TargetFramework>
<AssemblyName>Microsoft.KernelMemory.Evaluation</AssemblyName>
<RootNamespace>Microsoft.KernelMemory.Evaluation</RootNamespace>
<NoWarn>$(NoWarn);KMEXP00;CA1711;CS1574;NU5104;SKEXP0001;CS8002;SKEXP0010;</NoWarn>
<NoWarn>$(NoWarn);KMEXP00;CA1711;CS1574;SKEXP0001;SKEXP0010;CS8002;</NoWarn>
</PropertyGroup>

<PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<RollForward>LatestMajor</RollForward>
<AssemblyName>Microsoft.KernelMemory.SemanticKernelPlugin</AssemblyName>
<RootNamespace>Microsoft.KernelMemory.SemanticKernelPlugin</RootNamespace>
<NoWarn>$(NoWarn);NU5104;</NoWarn>
<NoWarn>$(NoWarn);</NoWarn>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion clients/dotnet/WebClient/WebClient.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<RollForward>LatestMajor</RollForward>
<AssemblyName>Microsoft.KernelMemory.WebClient</AssemblyName>
<RootNamespace>Microsoft.KernelMemory</RootNamespace>
<NoWarn>$(NoWarn);NU5104;</NoWarn>
<NoWarn>$(NoWarn);</NoWarn>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<NoWarn>$(NoWarn);CS8002;</NoWarn>
<NoWarn>$(NoWarn);</NoWarn>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,4 @@
</Content>
</ItemGroup>

<ItemGroup>
<PackageReference Include="Azure.Extensions.AspNetCore.Configuration.Secrets" />
<PackageReference Include="Microsoft.Extensions.Configuration" />
<PackageReference Include="Microsoft.Extensions.Configuration.AzureAppConfiguration" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@

<ItemGroup>
<PackageReference Include="Azure.AI.ContentSafety" />
<PackageReference Include="Azure.Core" />
<PackageReference Include="Azure.Identity" />
</ItemGroup>

Expand Down
1 change: 0 additions & 1 deletion extensions/AzureAIDocIntel/AzureAIDocIntel.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Azure.Core" />
<PackageReference Include="Azure.Identity" />
<PackageReference Include="Azure.AI.FormRecognizer" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<RollForward>LatestMajor</RollForward>
<AssemblyName>Microsoft.KernelMemory.MemoryDb.AzureAISearch</AssemblyName>
<RootNamespace>Microsoft.KernelMemory.MemoryDb.AzureAISearch</RootNamespace>
<NoWarn>$(NoWarn);KMEXP00;KMEXP03;CA1724;CA1308;</NoWarn>
<NoWarn>$(NoWarn);CS1700;KMEXP00;KMEXP03;CA1724;CA1308;</NoWarn>
</PropertyGroup>

<ItemGroup>
Expand Down
20 changes: 10 additions & 10 deletions extensions/Discord/Discord/Discord.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,24 +5,24 @@
<RollForward>LatestMajor</RollForward>
<AssemblyName>Microsoft.KernelMemory.Sources.DiscordBot</AssemblyName>
<RootNamespace>Microsoft.KernelMemory.Sources.DiscordBot</RootNamespace>
<NoWarn>$(NoWarn);CA1303;CS8002;</NoWarn>
</PropertyGroup>

<PropertyGroup>
<IsPackable>false</IsPackable>
<PackageId>Microsoft.KernelMemory.Sources.Discord</PackageId>
<Product>Discord connector for Kernel Memory</Product>
<Description>Discord connector for Kernel Memory</Description>
<PackageTags>Discord, Kernel Memory, AI, Artificial Intelligence, ETL</PackageTags>
<NoWarn>$(NoWarn);CS8002;CA1303;</NoWarn>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Discord.Net" />
<PackageReference Include="Discord.Net" /> <!-- missing strong name (CS8002) -->
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\..\service\Abstractions\Abstractions.csproj" />
</ItemGroup>

<PropertyGroup>
<IsPackable>false</IsPackable>
<PackageId>Microsoft.KernelMemory.Sources.Discord</PackageId>
<Product>Discord connector for Kernel Memory</Product>
<Description>Discord connector for Kernel Memory</Description>
<PackageTags>Discord, Kernel Memory, AI, Artificial Intelligence, ETL</PackageTags>
</PropertyGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<RollForward>LatestMajor</RollForward>
<AssemblyName>Microsoft.KernelMemory.MemoryDb.Elasticsearch</AssemblyName>
<RootNamespace>Microsoft.KernelMemory.MemoryDb.Elasticsearch</RootNamespace>
<NoWarn>$(NoWarn);KMEXP00;KMEXP03;CA1308;CA1724;CA1812;</NoWarn>
<NoWarn>$(NoWarn);CS1700;KMEXP00;KMEXP03;CA1308;CA1724;CA1812;</NoWarn>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
Expand Down
6 changes: 3 additions & 3 deletions extensions/KM/KernelMemory/KernelMemory.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
<RollForward>LatestMajor</RollForward>
<AssemblyName>Microsoft.KernelMemory.All</AssemblyName>
<RootNamespace>Microsoft.KernelMemory</RootNamespace>
<NoWarn>$(NoWarn);NU5104;CS8002;</NoWarn>
<NoWarn>$(NoWarn);CS8002;</NoWarn>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\..\..\clients\dotnet\SemanticKernelPlugin\SemanticKernelPlugin.csproj" />
<ProjectReference Include="..\..\..\clients\dotnet\WebClient\WebClient.csproj" />
<ProjectReference Include="..\..\..\service\Abstractions\Abstractions.csproj" />
<ProjectReference Include="..\..\..\service\Core\Core.csproj" />
<ProjectReference Include="..\..\..\clients\dotnet\SemanticKernelPlugin\SemanticKernelPlugin.csproj" />
<ProjectReference Include="..\..\..\clients\dotnet\WebClient\WebClient.csproj" />
<ProjectReference Include="..\..\Anthropic\Anthropic.csproj" />
<ProjectReference Include="..\..\AWS\S3\S3.csproj" />
<ProjectReference Include="..\..\AzureAIContentSafety\AzureAIContentSafety\AzureAIContentSafety.csproj" />
Expand Down
2 changes: 1 addition & 1 deletion extensions/LlamaSharp/LlamaSharp/LlamaSharp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="LLamaSharp" />
<PackageReference Include="LLamaSharp" /> <!-- missing strong name (CS8002) -->

<!-- Kernel Memory web service is configured to not have ANY pre-configured LLamaSharp backend, e.g. KM Docker
image does not work with LLamaSharp without manually mounting a LLamaSharp backend assembly into the
Expand Down
2 changes: 1 addition & 1 deletion extensions/MongoDbAtlas/MongoDbAtlas/MongoDbAtlas.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<RollForward>LatestMajor</RollForward>
<AssemblyName>Microsoft.KernelMemory.MongoDbAtlas</AssemblyName>
<RootNamespace>Microsoft.KernelMemory.MongoDbAtlas</RootNamespace>
<NoWarn>$(NoWarn);KMEXP03;CA1724;CA1308;</NoWarn>
<NoWarn>$(NoWarn);CS1700;KMEXP03;CA1724;CA1308;</NoWarn>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion extensions/Ollama/Ollama/Ollama.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<RollForward>LatestMajor</RollForward>
<AssemblyName>Microsoft.KernelMemory.AI.Ollama</AssemblyName>
<RootNamespace>Microsoft.KernelMemory.AI.Ollama</RootNamespace>
<NoWarn>$(NoWarn);KMEXP00;KMEXP01;CA1724;CS8002;</NoWarn>
<NoWarn>$(NoWarn);KMEXP00;KMEXP01;CA1724;</NoWarn>
</PropertyGroup>

<PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion extensions/OpenAI/OpenAI/OpenAI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

<ItemGroup>
<PackageReference Include="Microsoft.SemanticKernel.Connectors.OpenAI" />
<PackageReference Include="Microsoft.ML.Tokenizers" />
<PackageReference Include="Microsoft.ML.Tokenizers" /> <!-- prerelease dependency (NU5104) -->
</ItemGroup>

<PropertyGroup>
Expand Down
4 changes: 2 additions & 2 deletions extensions/Postgres/Postgres/Postgres.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<RollForward>LatestMajor</RollForward>
<AssemblyName>Microsoft.KernelMemory.Postgres</AssemblyName>
<RootNamespace>Microsoft.KernelMemory.Postgres</RootNamespace>
<NoWarn>$(NoWarn);KMEXP00;KMEXP03;CA1724;NU5104;CA1308;CS8002;</NoWarn>
<NoWarn>$(NoWarn);KMEXP00;KMEXP03;CA1724;CA1308;CS8002;</NoWarn>
</PropertyGroup>

<ItemGroup>
Expand All @@ -14,7 +14,7 @@

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" />
<PackageReference Include="Pgvector" />
<PackageReference Include="Pgvector" /> <!-- missing strong name (CS8002) -->
</ItemGroup>

<PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion extensions/Qdrant/Qdrant/Qdrant.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<RollForward>LatestMajor</RollForward>
<AssemblyName>Microsoft.KernelMemory.MemoryDb.Qdrant</AssemblyName>
<RootNamespace>Microsoft.KernelMemory.MemoryDb.Qdrant</RootNamespace>
<NoWarn>$(NoWarn);KMEXP00;KMEXP03;CA1724;CA1308;</NoWarn>
<NoWarn>$(NoWarn);CS1700;KMEXP00;KMEXP03;CA1724;CA1308;</NoWarn>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion extensions/Redis/Redis/Redis.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

<ItemGroup>
<PackageReference Include="System.Linq.Async" />
<PackageReference Include="NRedisStack" />
<PackageReference Include="NRedisStack" /><!-- missing strong name (CS8002) -->
</ItemGroup>

<PropertyGroup>
Expand Down
1 change: 0 additions & 1 deletion extensions/SQLServer/SQLServer/SQLServer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Azure.Core" />
<PackageReference Include="Microsoft.Data.SqlClient" />
<PackageReference Include="System.Runtime.Caching" />
</ItemGroup>
Expand Down
3 changes: 1 addition & 2 deletions service/Abstractions/Abstractions.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,10 @@
<TargetFramework>net8.0</TargetFramework>
<AssemblyName>Microsoft.KernelMemory.Abstractions</AssemblyName>
<RootNamespace>Microsoft.KernelMemory</RootNamespace>
<NoWarn>$(NoWarn);KMEXP00;CA1711;CA1724;CS1574;NU5104;SKEXP0001;</NoWarn>
<NoWarn>$(NoWarn);KMEXP00;CA1711;CA1724;CS1574;SKEXP0001;</NoWarn>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" />
<PackageReference Include="Microsoft.Extensions.Configuration" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" />
<PackageReference Include="Microsoft.Extensions.Hosting" />
Expand Down
11 changes: 5 additions & 6 deletions service/Core/Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,21 +5,20 @@
<RollForward>LatestMajor</RollForward>
<AssemblyName>Microsoft.KernelMemory.Core</AssemblyName>
<RootNamespace>Microsoft.KernelMemory</RootNamespace>
<NoWarn>$(NoWarn);KMEXP00;KMEXP01;KMEXP02;KMEXP03;KMEXP04;SKEXP0001;SKEXP0011;CA2208;CA1308;CA1724;NU5104;CS8002;</NoWarn>
<NoWarn>$(NoWarn);CS1700;KMEXP00;KMEXP01;KMEXP02;KMEXP03;KMEXP04;SKEXP0001;SKEXP0011;CA2208;CA1308;CA1724;NU5104;CS8002;</NoWarn>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\Abstractions\Abstractions.csproj" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Azure.Core" />
<PackageReference Include="ClosedXML" />
<PackageReference Include="ClosedXML" /> <!-- missing strong name (CS8002) -->
<PackageReference Include="DocumentFormat.OpenXml" />
<PackageReference Include="HtmlAgilityPack" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" />
<PackageReference Include="Microsoft.Extensions.Http" />
<PackageReference Include="Microsoft.ML.Tokenizers" />
<PackageReference Include="Microsoft.ML.Tokenizers" /> <!-- prerelease dependency (NU5104) -->
<PackageReference Include="PdfPig" />
<PackageReference Include="Polly.Core" />
<PackageReference Include="System.Linq.Async" />
Expand All @@ -38,8 +37,8 @@
<PropertyGroup>
<IsPackable>true</IsPackable>
<PackageId>Microsoft.KernelMemory.Core</PackageId>
<Product>Kernel Memory library, including extensions and Serverless and Web client</Product>
<Description>The package contains all the core logic and extensions of Kernel Memory, to index and query any data and documents, using LLM and natural language, tracking sources and showing citations.</Description>
<Product>Kernel Memory core library</Product>
<Description>The package contains the the core logic and abstractions of Kernel Memory, not including extensions.</Description>
<PackageTags>Copilot, Plugin, Memory, RAG, Kernel Memory, Semantic Memory, Episodic Memory, Declarative Memory, AI, Artificial Intelligence, Embeddings, Vector DB, Vector Search, Memory DB, ETL</PackageTags>
<DocumentationFile>bin/$(Configuration)/$(TargetFramework)/$(AssemblyName).xml</DocumentationFile>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion service/Service.AspNetCore/Service.AspNetCore.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<RollForward>LatestMajor</RollForward>
<AssemblyName>Microsoft.KernelMemory.Service.AspNetCore</AssemblyName>
<RootNamespace>Microsoft.KernelMemory.Service.AspNetCore</RootNamespace>
<NoWarn>$(NoWarn);CA1031;CA2254;CS8002;</NoWarn>
<NoWarn>$(NoWarn);CA1031;CA2254;</NoWarn>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion service/Service/Service.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<RootNamespace>Microsoft.KernelMemory.Service</RootNamespace>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<IsPackable>false</IsPackable>
<NoWarn>$(NoWarn);CA2007;CA1724;CA2254;CA1031;CA1861;CA1303;SKEXP0001;KMEXP05;CS8002;</NoWarn>
<NoWarn>$(NoWarn);CA2007;CA1724;CA2254;CA1031;CA1861;CA1303;SKEXP0001;KMEXP05;</NoWarn>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit ef6ec96

Please sign in to comment.