We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fdd4c6f commit 4b391a3Copy full SHA for 4b391a3
HttpClient/HttpClient.csproj
@@ -2,6 +2,17 @@
2
3
<PropertyGroup>
4
<TargetFrameworks>net472;net6.0-windows</TargetFrameworks>
5
+
6
+ <!--
7
+ Normally, Excel-DNA will register all 'public static' methods.
8
+ However, in this project we are doing the registration explicitly
9
+ (in the AutoOpen, using the ExcelDna.Registration helper library).
10
+ Automatic registration for this project will show an error,
11
+ because the httpGetString method has an 'incompatible' signature (returning Task<string>).
12
+ This property configures explicit registration mode.
13
+ -->
14
+ <ExcelAddInExplicitRegistration>true</ExcelAddInExplicitRegistration>
15
16
</PropertyGroup>
17
18
<ItemGroup>
0 commit comments