diff options
Diffstat (limited to 'src/Properties/ExcelDna.Build.props')
-rw-r--r-- | src/Properties/ExcelDna.Build.props | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/Properties/ExcelDna.Build.props b/src/Properties/ExcelDna.Build.props index 1fed993..f5fdab1 100644 --- a/src/Properties/ExcelDna.Build.props +++ b/src/Properties/ExcelDna.Build.props @@ -72,6 +72,15 @@ Suffix used for packed .xll files e.g. MyAddIn-packed.xll --> <ExcelDnaPackXllSuffix Condition="'$(ExcelDnaPackXllSuffix)' == ''">-packed</ExcelDnaPackXllSuffix> + + <!-- + Options used when packing .xll files. + When in trouble with your virus scanner, try uncommenting at least the resource compression properties. + The default is true for both compression and multithreaded runs when not specified. + --> + <!--<ExcelDnaPackCompressResources Condition="'$(ConfigurationName)' == 'Debug'">false</ExcelDnaPackCompressResources>--> + <!--<ExcelDnaPackRunMultithreaded Condition="'$(ConfigurationName)' == 'Debug'">false</ExcelDnaPackRunMultithreaded>--> + <!--<ExcelDnaPackCompressResources Condition="'$(ConfigurationName)' == 'Release'">false</ExcelDnaPackCompressResources>--> + <!--<ExcelDnaPackRunMultithreaded Condition="'$(ConfigurationName)' == 'Release'">false</ExcelDnaPackRunMultithreaded>--> </PropertyGroup> </Project> - |