aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSerghei Cebotari <serghei@cebotari.ru>2024-11-08 09:19:06 +0300
committerSerghei Cebotari <serghei@cebotari.ru>2024-11-08 09:19:06 +0300
commitc3da89678e5417548815f74fa69edb12be49cbe6 (patch)
tree23ed7e4bc596bbb4dcb713ce85c02af6f6f1d766
parentd0c5ed5e1ac82668de8851de713928c4334e7881 (diff)
Supress warn CA1416
-rw-r--r--RhSolutions.AddIn/RhSolutions.AddIn.csproj5
1 files changed, 4 insertions, 1 deletions
diff --git a/RhSolutions.AddIn/RhSolutions.AddIn.csproj b/RhSolutions.AddIn/RhSolutions.AddIn.csproj
index 9963e0c..4589a49 100644
--- a/RhSolutions.AddIn/RhSolutions.AddIn.csproj
+++ b/RhSolutions.AddIn/RhSolutions.AddIn.csproj
@@ -1,4 +1,4 @@
-<Project Sdk="Microsoft.NET.Sdk">
+<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net472;net6.0-windows</TargetFrameworks>
<LangVersion>10</LangVersion>
@@ -9,6 +9,9 @@
<UseWindowsForms>true</UseWindowsForms>
<ImportWindowsDesktopTargets>true</ImportWindowsDesktopTargets>
</PropertyGroup>
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
+ <NoWarn>CA1416</NoWarn>
+ </PropertyGroup>
<ItemGroup>
<PackageReference Include="ExcelDna.AddIn" Version="1.8.0" />
<PackageReference Include="ExcelDna.Integration" Version="1.8.0" />