diff options
author | Sergey Chebotar <s.chebotar@gmail.com> | 2023-03-22 08:36:13 +0300 |
---|---|---|
committer | Sergey Chebotar <s.chebotar@gmail.com> | 2023-03-22 08:36:13 +0300 |
commit | 4f448f203471a19a1444555a895f503515ad2fda (patch) | |
tree | 301b7df2561d650e4d300d24341342bd77ac7f3e /src/Properties | |
parent | 6484cac4f025bd84f7ffa2b2030d729dafe09d3d (diff) |
Add basic test
Diffstat (limited to 'src/Properties')
-rw-r--r-- | src/Properties/AssemblyInfo.cs | 37 | ||||
-rw-r--r-- | src/Properties/ExcelDna.Build.props | 86 | ||||
-rw-r--r-- | src/Properties/launchSettings.json | 9 |
3 files changed, 0 insertions, 132 deletions
diff --git a/src/Properties/AssemblyInfo.cs b/src/Properties/AssemblyInfo.cs deleted file mode 100644 index 78f4a31..0000000 --- a/src/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,37 +0,0 @@ -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; -using System.Runtime.Versioning; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("RhSolutions.AddIn")] -[assembly: AssemblyDescription("Excel AddIn for RhSolutions")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("RhSolutions")] -[assembly: AssemblyProduct("RhSolutions.AddIn")] -[assembly: AssemblyCopyright("Copyright © 2021-2023")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. -[assembly: ComVisible(false)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("18a2ff67-0e46-4a86-b872-29f2b3f23adf")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Build and Revision Numbers -// by using the '*' as shown below: -// [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.2.4.0")] -[assembly: AssemblyFileVersion("1.2.4.0")] diff --git a/src/Properties/ExcelDna.Build.props b/src/Properties/ExcelDna.Build.props deleted file mode 100644 index f5fdab1..0000000 --- a/src/Properties/ExcelDna.Build.props +++ /dev/null @@ -1,86 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="ExcelDnaProps"> -<!-- - If you change properties in this file, they may not come into effect until you: - * Rebuild the solution/project - - or - - * Close Visual Studio - * Delete .vs folder, if exists - * Delete ProjectName.csproj.user (or equivalent for VB, F#, etc.), if exists - * Delete SolutionName.suo, if exists - * Open your solution/project again in Visual Studio - --> - - <!-- - Configuration properties for debugging Excel-DNA add-ins - --> - <PropertyGroup> - <!-- - Enable/Disable setting the debug options when building the project - --> - <RunExcelDnaSetDebuggerOptions Condition="'$(RunExcelDnaSetDebuggerOptions)' == ''">true</RunExcelDnaSetDebuggerOptions> - - <!-- - Override the path of EXCEL.EXE used for debugging the project, if you need - By default, it will use the latest version of Excel it can find on the machine - --> - <ExcelDnaExcelExePath Condition="'$(ExcelDnaExcelExePath)' == ''"></ExcelDnaExcelExePath> - - <!-- - Override the name of the .XLL add-in to use when debugging the project, if you need - By default, it will use the first unpacked .xll add-in that matches the bitness of EXCEL.EXE - --> - <ExcelDnaAddInForDebugging Condition="'$(ExcelDnaAddInForDebugging)' == ''"></ExcelDnaAddInForDebugging> - </PropertyGroup> - - <!-- - Configuration properties for building .dna files - --> - <PropertyGroup> - <!-- - Enable/Disable automatic generation of platform-specific versions of .dna files - --> - <ExcelDnaCreate32BitAddIn Condition="'$(ExcelDnaCreate32BitAddIn)' == ''">true</ExcelDnaCreate32BitAddIn> - <ExcelDnaCreate64BitAddIn Condition="'$(ExcelDnaCreate64BitAddIn)' == ''">true</ExcelDnaCreate64BitAddIn> - - <!-- - Define the suffix used for each platform-specific file e.g. MyAddIn64.dna - --> - <ExcelDna32BitAddInSuffix Condition="'$(ExcelDna32BitAddInSuffix)' == ''"></ExcelDna32BitAddInSuffix> - <ExcelDna64BitAddInSuffix Condition="'$(ExcelDna64BitAddInSuffix)' == ''">64</ExcelDna64BitAddInSuffix> - </PropertyGroup> - - <PropertyGroup> - <!-- - Enable/Disable using Excel-DNA with PackageReference projects (not officially supported) - --> - <ExcelDnaAllowPackageReferenceProjectStyle Condition="'$(ExcelDnaAllowPackageReferenceProjectStyle)' == ''">false</ExcelDnaAllowPackageReferenceProjectStyle> - </PropertyGroup> - - <!-- - Configuration properties for packing .dna files - --> - <PropertyGroup> - <!-- - Enable/Disable packing of .dna files - --> - <RunExcelDnaPack Condition="'$(RunExcelDnaPack)' == ''">true</RunExcelDnaPack> - - <!-- - 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> diff --git a/src/Properties/launchSettings.json b/src/Properties/launchSettings.json deleted file mode 100644 index c36dbc3..0000000 --- a/src/Properties/launchSettings.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "profiles": { - "Excel": { - "commandName": "Executable", - "executablePath": "C:\\Program Files\\Microsoft Office\\root\\Office16\\EXCEL.EXE", - "commandLineArgs": "RhSolutions-AddIn64.xll" - } - } -}
\ No newline at end of file |