diff options
author | Serghei Cebotari <serghei@cebotari.ru> | 2024-11-08 09:19:06 +0300 |
---|---|---|
committer | Serghei Cebotari <serghei@cebotari.ru> | 2024-11-08 09:19:06 +0300 |
commit | c3da89678e5417548815f74fa69edb12be49cbe6 (patch) | |
tree | 23ed7e4bc596bbb4dcb713ce85c02af6f6f1d766 | |
parent | d0c5ed5e1ac82668de8851de713928c4334e7881 (diff) |
Supress warn CA1416
-rw-r--r-- | RhSolutions.AddIn/RhSolutions.AddIn.csproj | 5 |
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" /> |