-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixed: AppSettingsProvider infers URLs as ints
- Loading branch information
1 parent
bcaac08
commit 13877af
Showing
11 changed files
with
93 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,15 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<configuration> | ||
<appSettings> | ||
<add key="test2" value="Some Test Value 5"/> | ||
<add key="TestInt" value="102"/> | ||
<add key="TestBool" value="True"/> | ||
<add key="TestDouble" value="10.01"/> | ||
<add key="test2" value="Some Test Value 5" /> | ||
<add key="TestInt" value="102" /> | ||
<add key="TestBool" value="True" /> | ||
<add key="TestDouble" value="10.01" /> | ||
<add key="TestDateTime" value="2014-05-18 11:14:28Z" /> | ||
<add key="TestTimeSpan" value="00:12:30" /> | ||
<add key="TestUri" value="http://fsharp.org" /> | ||
</appSettings> | ||
<connectionStrings> | ||
<add name="Test" connectionString="Server=.;Database=SomeDatabase;Integrated Security=true"/> | ||
<add name="Test" connectionString="Server=.;Database=SomeDatabase;Integrated Security=true" /> | ||
</connectionStrings> | ||
</configuration> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,60 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<configuration> | ||
<appSettings> | ||
<add key="test2" value="Some Test Value 5"/> | ||
<add key="TestInt" value="102"/> | ||
<add key="TestBool" value="True"/> | ||
<add key="TestDouble" value="10.01"/> | ||
<add key="TestTimeSpan" value="2.01:02:03.444"/> | ||
<add key="TestDateTime" value="02/01/2014 03:04:05.777"/> | ||
<add key="test2" value="Some Test Value 5" /> | ||
<add key="TestInt" value="102" /> | ||
<add key="TestBool" value="True" /> | ||
<add key="TestDouble" value="10.01" /> | ||
<add key="TestTimeSpan" value="2.01:02:03.444" /> | ||
<add key="TestDateTime" value="02/01/2014 03:04:05.777" /> | ||
<add key="TestUri" value="http://fsharp.org" /> | ||
</appSettings> | ||
|
||
<connectionStrings> | ||
<add name="Test1" connectionString="Server=myServerAddress;Database=myDataBase;Trusted_Connection=True;"/> | ||
<add name="Test2" connectionString="Server=myServerAddress;Database=myDataBase2;Trusted_Connection=True;"/> | ||
<add name="Test1" connectionString="Server=myServerAddress;Database=myDataBase;Trusted_Connection=True;" /> | ||
<add name="Test2" connectionString="Server=myServerAddress;Database=myDataBase2;Trusted_Connection=True;" /> | ||
</connectionStrings> | ||
<runtime> | ||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> | ||
<dependentAssembly> | ||
<assemblyIdentity name="System.Web.Razor" publicKeyToken="31bf3856ad364e35" culture="neutral" /> | ||
<bindingRedirect oldVersion="0.0.0.0-2.0.0.0" newVersion="2.0.0.0" /> | ||
</dependentAssembly> | ||
<dependentAssembly> | ||
<assemblyIdentity name="System.IO" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" /> | ||
<bindingRedirect oldVersion="0.0.0.0-2.6.9.0" newVersion="2.6.9.0" /> | ||
</dependentAssembly> | ||
<dependentAssembly> | ||
<assemblyIdentity name="System.Runtime" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" /> | ||
<bindingRedirect oldVersion="0.0.0.0-2.6.9.0" newVersion="2.6.9.0" /> | ||
</dependentAssembly> | ||
<dependentAssembly> | ||
<assemblyIdentity name="System.Threading.Tasks" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" /> | ||
<bindingRedirect oldVersion="0.0.0.0-2.6.9.0" newVersion="2.6.9.0" /> | ||
</dependentAssembly> | ||
<dependentAssembly> | ||
<assemblyIdentity name="System.Net.Http.Extensions" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" /> | ||
<bindingRedirect oldVersion="0.0.0.0-2.2.28.0" newVersion="2.2.28.0" /> | ||
</dependentAssembly> | ||
<dependentAssembly> | ||
<assemblyIdentity name="System.Net.Http.Primitives" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" /> | ||
<bindingRedirect oldVersion="0.0.0.0-4.2.28.0" newVersion="4.2.28.0" /> | ||
</dependentAssembly> | ||
<dependentAssembly> | ||
<assemblyIdentity name="System.Net.Http.WebRequest" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" /> | ||
<bindingRedirect oldVersion="0.0.0.0-2.2.28.0" newVersion="2.2.28.0" /> | ||
</dependentAssembly> | ||
<dependentAssembly> | ||
<assemblyIdentity name="System.Net.Http" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" /> | ||
<bindingRedirect oldVersion="0.0.0.0-2.2.28.0" newVersion="2.2.28.0" /> | ||
</dependentAssembly> | ||
<dependentAssembly> | ||
<assemblyIdentity name="nunit.framework" publicKeyToken="96d09a1eb7f44a77" culture="neutral" /> | ||
<bindingRedirect oldVersion="0.0.0.0-2.6.3.13283" newVersion="2.6.3.13283" /> | ||
</dependentAssembly> | ||
<dependentAssembly> | ||
<assemblyIdentity name="RazorEngine" publicKeyToken="9ee697374c7e744a" culture="neutral" /> | ||
<bindingRedirect oldVersion="0.0.0.0-3.3.0.0" newVersion="3.3.0.0" /> | ||
</dependentAssembly> | ||
</assemblyBinding> | ||
</runtime> | ||
</configuration> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
NUnit | ||
NUnit |