Skip to content

Commit 898f790

Browse files
committed
Change to use MyGet packages
1 parent 68141b9 commit 898f790

File tree

8 files changed

+179
-64
lines changed

8 files changed

+179
-64
lines changed

src/BenchmarksAnalyzer.ServiceInterface/BenchmarksAnalyzer.ServiceInterface.csproj

Lines changed: 18 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -33,23 +33,29 @@
3333
<Reference Include="Ionic.Zip">
3434
<HintPath>..\packages\DotNetZip.1.9.2\lib\net20\Ionic.Zip.dll</HintPath>
3535
</Reference>
36-
<Reference Include="ServiceStack">
37-
<HintPath>..\..\lib\ServiceStack.dll</HintPath>
36+
<Reference Include="ServiceStack, Version=4.0.32.0, Culture=neutral, processorArchitecture=MSIL">
37+
<SpecificVersion>False</SpecificVersion>
38+
<HintPath>..\packages\ServiceStack.4.0.32\lib\net40\ServiceStack.dll</HintPath>
3839
</Reference>
39-
<Reference Include="ServiceStack.Client">
40-
<HintPath>..\..\lib\ServiceStack.Client.dll</HintPath>
40+
<Reference Include="ServiceStack.Client, Version=4.0.32.0, Culture=neutral, processorArchitecture=MSIL">
41+
<SpecificVersion>False</SpecificVersion>
42+
<HintPath>..\packages\ServiceStack.Client.4.0.32\lib\net40\ServiceStack.Client.dll</HintPath>
4143
</Reference>
42-
<Reference Include="ServiceStack.Common">
43-
<HintPath>..\..\lib\ServiceStack.Common.dll</HintPath>
44+
<Reference Include="ServiceStack.Common, Version=4.0.32.0, Culture=neutral, processorArchitecture=MSIL">
45+
<SpecificVersion>False</SpecificVersion>
46+
<HintPath>..\packages\ServiceStack.Common.4.0.32\lib\net40\ServiceStack.Common.dll</HintPath>
4447
</Reference>
45-
<Reference Include="ServiceStack.Interfaces">
46-
<HintPath>..\..\lib\ServiceStack.Interfaces.dll</HintPath>
48+
<Reference Include="ServiceStack.Interfaces, Version=4.0.0.0, Culture=neutral, PublicKeyToken=e06fbc6124f57c43, processorArchitecture=MSIL">
49+
<SpecificVersion>False</SpecificVersion>
50+
<HintPath>..\packages\ServiceStack.Interfaces.4.0.32\lib\portable-wp80+sl5+net40+win8+monotouch+monoandroid\ServiceStack.Interfaces.dll</HintPath>
4751
</Reference>
48-
<Reference Include="ServiceStack.OrmLite">
49-
<HintPath>..\..\lib\ServiceStack.OrmLite.dll</HintPath>
52+
<Reference Include="ServiceStack.OrmLite, Version=4.0.32.0, Culture=neutral, processorArchitecture=MSIL">
53+
<SpecificVersion>False</SpecificVersion>
54+
<HintPath>..\packages\ServiceStack.OrmLite.4.0.32\lib\net40\ServiceStack.OrmLite.dll</HintPath>
5055
</Reference>
51-
<Reference Include="ServiceStack.Text">
52-
<HintPath>..\..\lib\ServiceStack.Text.dll</HintPath>
56+
<Reference Include="ServiceStack.Text, Version=4.0.32.0, Culture=neutral, processorArchitecture=MSIL">
57+
<SpecificVersion>False</SpecificVersion>
58+
<HintPath>..\packages\ServiceStack.Text.4.0.32\lib\net40\ServiceStack.Text.dll</HintPath>
5359
</Reference>
5460
<Reference Include="System" />
5561
<Reference Include="System.Core" />
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
33
<package id="DotNetZip" version="1.9.2" targetFramework="net45" />
4+
<package id="ServiceStack" version="4.0.32" targetFramework="net45" />
5+
<package id="ServiceStack.Client" version="4.0.32" targetFramework="net45" />
6+
<package id="ServiceStack.Common" version="4.0.32" targetFramework="net45" />
7+
<package id="ServiceStack.Interfaces" version="4.0.32" targetFramework="net45" />
8+
<package id="ServiceStack.OrmLite" version="4.0.32" targetFramework="net45" />
9+
<package id="ServiceStack.Text" version="4.0.32" targetFramework="net45" />
410
</packages>

src/BenchmarksAnalyzer.ServiceModel/BenchmarksAnalyzer.ServiceModel.csproj

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,13 @@
3030
<WarningLevel>4</WarningLevel>
3131
</PropertyGroup>
3232
<ItemGroup>
33-
<Reference Include="ServiceStack.Interfaces">
34-
<HintPath>..\..\lib\ServiceStack.Interfaces.dll</HintPath>
33+
<Reference Include="ServiceStack.Interfaces, Version=4.0.0.0, Culture=neutral, PublicKeyToken=e06fbc6124f57c43, processorArchitecture=MSIL">
34+
<SpecificVersion>False</SpecificVersion>
35+
<HintPath>..\packages\ServiceStack.Interfaces.4.0.32\lib\portable-wp80+sl5+net40+win8+monotouch+monoandroid\ServiceStack.Interfaces.dll</HintPath>
3536
</Reference>
36-
<Reference Include="ServiceStack.Text">
37-
<HintPath>..\..\lib\ServiceStack.Text.dll</HintPath>
37+
<Reference Include="ServiceStack.Text, Version=4.0.32.0, Culture=neutral, processorArchitecture=MSIL">
38+
<SpecificVersion>False</SpecificVersion>
39+
<HintPath>..\packages\ServiceStack.Text.4.0.32\lib\net40\ServiceStack.Text.dll</HintPath>
3840
</Reference>
3941
<Reference Include="System" />
4042
<Reference Include="System.Core" />
@@ -60,6 +62,9 @@
6062
<Compile Include="UploadTestResults.cs" />
6163
<Compile Include="ViewTestPlan.cs" />
6264
</ItemGroup>
65+
<ItemGroup>
66+
<None Include="packages.config" />
67+
</ItemGroup>
6368
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
6469
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
6570
Other similar extension points exist, see Microsoft.Common.targets.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<packages>
3+
<package id="ServiceStack.Interfaces" version="4.0.32" targetFramework="net45" />
4+
<package id="ServiceStack.Text" version="4.0.32" targetFramework="net45" />
5+
</packages>

src/BenchmarksAnalyzer/BenchmarksAnalyzer.csproj

Lines changed: 59 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,9 @@
4343
<Reference Include="DCCreative.DNOA4Glimpse">
4444
<HintPath>..\packages\DCCreative.DNOA4Glimpse.1.3.0.1\lib\net40\DCCreative.DNOA4Glimpse.dll</HintPath>
4545
</Reference>
46-
<Reference Include="DotNetOpenAuth">
47-
<HintPath>..\..\lib\DotNetOpenAuth.dll</HintPath>
46+
<Reference Include="DotNetOpenAuth, Version=4.3.0.0, Culture=neutral, PublicKeyToken=2780ccd10d57b246, processorArchitecture=MSIL">
47+
<SpecificVersion>False</SpecificVersion>
48+
<HintPath>..\packages\DotNetOpenAuth.Ultimate.4.3.4.13329\lib\net45-full\DotNetOpenAuth.dll</HintPath>
4849
</Reference>
4950
<Reference Include="Glimpse.AspNet">
5051
<HintPath>..\packages\Glimpse.AspNet.1.8.1\lib\net45\Glimpse.AspNet.dll</HintPath>
@@ -60,62 +61,72 @@
6061
<HintPath>..\packages\log4net.2.0.0\lib\net40-full\log4net.dll</HintPath>
6162
</Reference>
6263
<Reference Include="Microsoft.CSharp" />
63-
<Reference Include="Mono.Data.Sqlite">
64-
<HintPath>..\..\lib\Mono.Data.Sqlite.dll</HintPath>
65-
</Reference>
66-
<Reference Include="Mono.Security">
67-
<HintPath>..\..\lib\Mono.Security.dll</HintPath>
68-
</Reference>
69-
<Reference Include="MySql.Data">
70-
<HintPath>..\..\lib\MySql.Data.dll</HintPath>
71-
</Reference>
72-
<Reference Include="Npgsql">
73-
<HintPath>..\..\lib\Npgsql.dll</HintPath>
64+
<Reference Include="Mono.Data.Sqlite, Version=2.0.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756, processorArchitecture=MSIL">
65+
<SpecificVersion>False</SpecificVersion>
66+
<HintPath>..\packages\ServiceStack.OrmLite.Sqlite.Mono.4.0.32\lib\net40\Mono.Data.Sqlite.dll</HintPath>
7467
</Reference>
75-
<Reference Include="ServiceStack">
76-
<HintPath>..\..\lib\ServiceStack.dll</HintPath>
68+
<Reference Include="Mono.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756, processorArchitecture=MSIL">
69+
<SpecificVersion>False</SpecificVersion>
70+
<HintPath>..\packages\Npgsql.2.2.0\lib\net45\Mono.Security.dll</HintPath>
7771
</Reference>
78-
<Reference Include="ServiceStack.Api.Swagger">
79-
<HintPath>..\..\lib\ServiceStack.Api.Swagger.dll</HintPath>
72+
<Reference Include="Npgsql, Version=2.2.0.0, Culture=neutral, PublicKeyToken=5d8b90d52f46fda7, processorArchitecture=MSIL">
73+
<SpecificVersion>False</SpecificVersion>
74+
<HintPath>..\packages\Npgsql.2.2.0\lib\net45\Npgsql.dll</HintPath>
8075
</Reference>
81-
<Reference Include="ServiceStack.Authentication.OAuth2">
82-
<HintPath>..\..\lib\ServiceStack.Authentication.OAuth2.dll</HintPath>
76+
<Reference Include="ServiceStack, Version=4.0.32.0, Culture=neutral, processorArchitecture=MSIL">
77+
<SpecificVersion>False</SpecificVersion>
78+
<HintPath>..\packages\ServiceStack.4.0.32\lib\net40\ServiceStack.dll</HintPath>
8379
</Reference>
84-
<Reference Include="ServiceStack.Authentication.OpenId">
85-
<HintPath>..\..\lib\ServiceStack.Authentication.OpenId.dll</HintPath>
80+
<Reference Include="ServiceStack.Api.Swagger, Version=4.0.32.0, Culture=neutral, processorArchitecture=MSIL">
81+
<SpecificVersion>False</SpecificVersion>
82+
<HintPath>..\packages\ServiceStack.Api.Swagger.4.0.32\lib\net40\ServiceStack.Api.Swagger.dll</HintPath>
8683
</Reference>
87-
<Reference Include="ServiceStack.Client">
88-
<HintPath>..\..\lib\ServiceStack.Client.dll</HintPath>
84+
<Reference Include="ServiceStack.Authentication.OAuth2, Version=4.0.32.0, Culture=neutral, processorArchitecture=MSIL">
85+
<SpecificVersion>False</SpecificVersion>
86+
<HintPath>..\packages\ServiceStack.Authentication.OAuth2.4.0.32\lib\net40\ServiceStack.Authentication.OAuth2.dll</HintPath>
8987
</Reference>
90-
<Reference Include="ServiceStack.Common">
91-
<HintPath>..\..\lib\ServiceStack.Common.dll</HintPath>
88+
<Reference Include="ServiceStack.Authentication.OpenId, Version=4.0.32.0, Culture=neutral, processorArchitecture=MSIL">
89+
<SpecificVersion>False</SpecificVersion>
90+
<HintPath>..\packages\ServiceStack.Authentication.OpenId.4.0.32\lib\net40\ServiceStack.Authentication.OpenId.dll</HintPath>
9291
</Reference>
93-
<Reference Include="ServiceStack.Interfaces">
94-
<HintPath>..\..\lib\ServiceStack.Interfaces.dll</HintPath>
92+
<Reference Include="ServiceStack.Client, Version=4.0.32.0, Culture=neutral, processorArchitecture=MSIL">
93+
<SpecificVersion>False</SpecificVersion>
94+
<HintPath>..\packages\ServiceStack.Client.4.0.32\lib\net40\ServiceStack.Client.dll</HintPath>
9595
</Reference>
96-
<Reference Include="ServiceStack.OrmLite">
97-
<HintPath>..\..\lib\ServiceStack.OrmLite.dll</HintPath>
96+
<Reference Include="ServiceStack.Common, Version=4.0.32.0, Culture=neutral, processorArchitecture=MSIL">
97+
<SpecificVersion>False</SpecificVersion>
98+
<HintPath>..\packages\ServiceStack.Common.4.0.32\lib\net40\ServiceStack.Common.dll</HintPath>
9899
</Reference>
99-
<Reference Include="ServiceStack.OrmLite.MySql">
100-
<HintPath>..\..\lib\ServiceStack.OrmLite.MySql.dll</HintPath>
100+
<Reference Include="ServiceStack.Interfaces, Version=4.0.0.0, Culture=neutral, PublicKeyToken=e06fbc6124f57c43, processorArchitecture=MSIL">
101+
<SpecificVersion>False</SpecificVersion>
102+
<HintPath>..\packages\ServiceStack.Interfaces.4.0.32\lib\portable-wp80+sl5+net40+win8+monotouch+monoandroid\ServiceStack.Interfaces.dll</HintPath>
101103
</Reference>
102-
<Reference Include="ServiceStack.OrmLite.PostgreSQL">
103-
<HintPath>..\..\lib\ServiceStack.OrmLite.PostgreSQL.dll</HintPath>
104+
<Reference Include="ServiceStack.OrmLite, Version=4.0.32.0, Culture=neutral, processorArchitecture=MSIL">
105+
<SpecificVersion>False</SpecificVersion>
106+
<HintPath>..\packages\ServiceStack.OrmLite.4.0.32\lib\net40\ServiceStack.OrmLite.dll</HintPath>
104107
</Reference>
105-
<Reference Include="ServiceStack.OrmLite.Sqlite">
106-
<HintPath>..\..\lib\ServiceStack.OrmLite.Sqlite.dll</HintPath>
108+
<Reference Include="ServiceStack.OrmLite.PostgreSQL, Version=4.0.32.0, Culture=neutral, processorArchitecture=MSIL">
109+
<SpecificVersion>False</SpecificVersion>
110+
<HintPath>..\packages\ServiceStack.OrmLite.PostgreSQL.4.0.32\lib\net40\ServiceStack.OrmLite.PostgreSQL.dll</HintPath>
107111
</Reference>
108-
<Reference Include="ServiceStack.OrmLite.SqlServer">
109-
<HintPath>..\..\lib\ServiceStack.OrmLite.SqlServer.dll</HintPath>
112+
<Reference Include="ServiceStack.OrmLite.Sqlite, Version=4.0.32.0, Culture=neutral, processorArchitecture=x86">
113+
<SpecificVersion>False</SpecificVersion>
114+
<HintPath>..\packages\ServiceStack.OrmLite.Sqlite.Mono.4.0.32\lib\net40\ServiceStack.OrmLite.Sqlite.dll</HintPath>
110115
</Reference>
111116
<Reference Include="ServiceStack.Razor">
112-
<HintPath>..\..\lib\ServiceStack.Razor.dll</HintPath>
117+
<HintPath>..\packages\ServiceStack.Razor.4.0.32\lib\net45\ServiceStack.Razor.dll</HintPath>
113118
</Reference>
114-
<Reference Include="ServiceStack.Server">
115-
<HintPath>..\..\lib\ServiceStack.Server.dll</HintPath>
119+
<Reference Include="ServiceStack.Redis, Version=4.0.32.0, Culture=neutral, processorArchitecture=MSIL">
120+
<SpecificVersion>False</SpecificVersion>
121+
<HintPath>..\packages\ServiceStack.Redis.4.0.32\lib\net40\ServiceStack.Redis.dll</HintPath>
116122
</Reference>
117-
<Reference Include="ServiceStack.Text">
118-
<HintPath>..\..\lib\ServiceStack.Text.dll</HintPath>
123+
<Reference Include="ServiceStack.Server, Version=4.0.32.0, Culture=neutral, processorArchitecture=MSIL">
124+
<SpecificVersion>False</SpecificVersion>
125+
<HintPath>..\packages\ServiceStack.Server.4.0.32\lib\net40\ServiceStack.Server.dll</HintPath>
126+
</Reference>
127+
<Reference Include="ServiceStack.Text, Version=4.0.32.0, Culture=neutral, processorArchitecture=MSIL">
128+
<SpecificVersion>False</SpecificVersion>
129+
<HintPath>..\packages\ServiceStack.Text.4.0.32\lib\net40\ServiceStack.Text.dll</HintPath>
119130
</Reference>
120131
<Reference Include="System.Web.DynamicData" />
121132
<Reference Include="System.Web.ApplicationServices" />
@@ -125,9 +136,9 @@
125136
<Reference Include="System.Core" />
126137
<Reference Include="System.Data.DataSetExtensions" />
127138
<Reference Include="System.Web.Extensions" />
128-
<Reference Include="System.Web.Razor, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
139+
<Reference Include="System.Web.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=e06fbc6124f57c43, processorArchitecture=MSIL">
129140
<SpecificVersion>False</SpecificVersion>
130-
<HintPath>..\..\lib\System.Web.Razor.dll</HintPath>
141+
<HintPath>..\packages\ServiceStack.Razor.4.0.32\lib\net45\System.Web.Razor.dll</HintPath>
131142
</Reference>
132143
<Reference Include="System.Xml.Linq" />
133144
<Reference Include="System.Drawing" />
@@ -138,10 +149,6 @@
138149
<Reference Include="System.EnterpriseServices" />
139150
</ItemGroup>
140151
<ItemGroup>
141-
<Content Include="..\..\lib\sqlite3.dll">
142-
<Link>sqlite3.dll</Link>
143-
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
144-
</Content>
145152
<Content Include="App_Readme\DCCreative.DNOA4Glimpse.Readme.txt" />
146153
<Content Include="Content\bootstrap-social.css" />
147154
<Content Include="Content\bootstrap-theme.css" />
@@ -205,6 +212,9 @@
205212
<Content Include="fonts\FontAwesome.otf" />
206213
<Content Include="about.cshtml" />
207214
<Content Include="Scripts\es5-shim.js" />
215+
<Content Include="sqlite3.dll">
216+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
217+
</Content>
208218
<Content Include="Views\ViewTestPlan.cshtml" />
209219
<None Include="Scripts\jquery-2.1.0.intellisense.js" />
210220
<Content Include="Scripts\fineuploader-3.2.css" />
@@ -240,6 +250,7 @@
240250
<Content Include="Web.Release.config">
241251
<DependentUpon>Web.config</DependentUpon>
242252
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
253+
<SubType>Designer</SubType>
243254
</Content>
244255
</ItemGroup>
245256
<ItemGroup>

src/BenchmarksAnalyzer/Web.config

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,12 @@
1313
</sectionGroup>
1414
<section name="glimpse" type="Glimpse.Core.Configuration.Section, Glimpse.Core" />
1515
<section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net" requirePermission="false" />
16+
<sectionGroup name="dotNetOpenAuth" type="DotNetOpenAuth.Configuration.DotNetOpenAuthSection, DotNetOpenAuth">
17+
<section name="openid" type="DotNetOpenAuth.Configuration.OpenIdElement, DotNetOpenAuth" requirePermission="false" allowLocation="true" />
18+
<section name="oauth" type="DotNetOpenAuth.Configuration.OAuthElement, DotNetOpenAuth" requirePermission="false" allowLocation="true" />
19+
<section name="messaging" type="DotNetOpenAuth.Configuration.MessagingElement, DotNetOpenAuth" requirePermission="false" allowLocation="true" />
20+
<section name="reporting" type="DotNetOpenAuth.Configuration.ReportingElement, DotNetOpenAuth" requirePermission="false" allowLocation="true" />
21+
</sectionGroup>
1622
</configSections>
1723

1824
<appSettings>
@@ -83,6 +89,7 @@
8389
<add namespace="BenchmarksAnalyzer.ServiceInterface" />
8490
<add namespace="BenchmarksAnalyzer.ServiceModel" />
8591
<add namespace="BenchmarksAnalyzer.ServiceModel.Types" />
92+
<add namespace="System" />
8693
</namespaces>
8794
</pages>
8895
<host factoryType="System.Web.Mvc.MvcWebRazorHostFactory, System.Web.Mvc" />
@@ -129,4 +136,63 @@
129136
<appender-ref ref="RollingFileAppender" />
130137
</logger>
131138
</log4net>
139+
<uri>
140+
<!-- The uri section is necessary to turn on .NET 3.5 support for IDN (international domain names),
141+
which is necessary for OpenID urls with unicode characters in the domain/host name.
142+
It is also required to put the Uri class into RFC 3986 escaping mode, which OpenID and OAuth require. -->
143+
<idn enabled="All" />
144+
<iriParsing enabled="true" />
145+
</uri>
146+
<system.net>
147+
<defaultProxy enabled="true" />
148+
<settings>
149+
<!-- This setting causes .NET to check certificate revocation lists (CRL)
150+
before trusting HTTPS certificates. But this setting tends to not
151+
be allowed in shared hosting environments. -->
152+
<!--<servicePointManager checkCertificateRevocationList="true"/>-->
153+
</settings>
154+
</system.net>
155+
<runtime>
156+
<!-- This prevents the Windows Event Log from frequently logging that HMAC1 is being used (when the other party needs it). -->
157+
<legacyHMACWarning enabled="0" />
158+
159+
<!-- When targeting ASP.NET MVC 3, this assemblyBinding makes MVC 1 and 2 references relink
160+
to MVC 3 so libraries such as DotNetOpenAuth that compile against MVC 1 will work with it.
161+
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
162+
<dependentAssembly>
163+
<assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
164+
<bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
165+
</dependentAssembly>
166+
</assemblyBinding>
167+
-->
168+
</runtime>
169+
<dotNetOpenAuth>
170+
<!-- This is an optional configuration section where aspects of dotnetopenauth can be customized. -->
171+
<!-- For a complete set of configuration options see http://www.dotnetopenauth.net/developers/code-snippets/configuration-options/ -->
172+
<openid>
173+
<relyingParty>
174+
<security requireSsl="false">
175+
<!-- Uncomment the trustedProviders tag if your relying party should only accept positive assertions from a closed set of OpenID Providers. -->
176+
<!--<trustedProviders rejectAssertionsFromUntrustedProviders="true">
177+
<add endpoint="https://www.google.com/accounts/o8/ud" />
178+
</trustedProviders>-->
179+
</security>
180+
<behaviors>
181+
<!-- The following OPTIONAL behavior allows RPs to use SREG only, but be compatible
182+
with OPs that use Attribute Exchange (in various formats). -->
183+
<add type="DotNetOpenAuth.OpenId.RelyingParty.Behaviors.AXFetchAsSregTransform, DotNetOpenAuth" />
184+
</behaviors>
185+
</relyingParty>
186+
</openid>
187+
<messaging>
188+
<untrustedWebRequest>
189+
<whitelistHosts>
190+
<!-- Uncomment to enable communication with localhost (should generally not activate in production!) -->
191+
<!--<add name="localhost" />-->
192+
</whitelistHosts>
193+
</untrustedWebRequest>
194+
</messaging>
195+
<!-- Allow DotNetOpenAuth to publish usage statistics to library authors to improve the library. -->
196+
<reporting enabled="true" />
197+
</dotNetOpenAuth>
132198
</configuration>

0 commit comments

Comments
 (0)