Skip to content

Commit 508ca54

Browse files
committed
Actually include new sample this time.
1 parent cc03e7b commit 508ca54

10 files changed

Lines changed: 421 additions & 0 deletions

File tree

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<?xml version="1.0" encoding="utf-8" ?>
2+
3+
<!--
4+
This sample secrets.xml file exists in App_Data. Which is obviously checked into source control
5+
for the purpose of being a sample. It is recommended that you reference a secrets file that exists
6+
outside of your souce control for development configurations. Using the "Manage User Secrets"
7+
feature of Visual Studio will wire up a random secrets file for you without the need for
8+
directly specifying a file via the 'userSecretsFile' or 'userSecretsId' attributes.
9+
-->
10+
11+
<root>
12+
<secrets ver="1.0">
13+
<secret name="secret1" value="secretfoo" />
14+
<secret name="secret2" value="secretbar" />
15+
<secret name="connectionString1" value="secretConnectionString" />
16+
<secret name="SystemDrive" value="X:" />
17+
</secrets>
18+
</root>
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"jsonSetting1": "From Json Root",
3+
"jsonConnectionString1": "CS From Json Root",
4+
5+
"appSettings": {
6+
"jsonSubSetting2": "From AppSettings Json object",
7+
"jsonSub": {
8+
"subSetting3": "From sub-property of AppSettings Json object"
9+
}
10+
},
11+
12+
"connectionStrings": {
13+
"jsonConnectionString1": "CS1 From ConnectionStrings Json object",
14+
"jsonConnectionString2": "CS2 From ConnectionStrings Json object",
15+
"connStr1": "SomeCrazyConnectionStringNotCheckedIntoSourceControl"
16+
},
17+
18+
"customSettings": {
19+
"jsonCustomSetting1": "Custom Setting from Json",
20+
"jsonConnectionString2": "CS2 From ConnectionStrings Json object",
21+
"jsonComplex": {
22+
"setting1": "Complex Setting 1",
23+
"setting2": "Complex Setting 2",
24+
"jsonArrayOfSettings": [ "one", "two", "three"]
25+
}
26+
}
27+
}
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
using System.Reflection;
2+
using System.Runtime.CompilerServices;
3+
using System.Runtime.InteropServices;
4+
5+
// General Information about an assembly is controlled through the following
6+
// set of attributes. Change these attribute values to modify the information
7+
// associated with an assembly.
8+
[assembly: AssemblyTitle("SampleWebApp")]
9+
[assembly: AssemblyDescription("")]
10+
[assembly: AssemblyConfiguration("")]
11+
[assembly: AssemblyCompany("")]
12+
[assembly: AssemblyProduct("SampleWebApp")]
13+
[assembly: AssemblyCopyright("Copyright © 2018")]
14+
[assembly: AssemblyTrademark("")]
15+
[assembly: AssemblyCulture("")]
16+
17+
// Setting ComVisible to false makes the types in this assembly not visible
18+
// to COM components. If you need to access a type in this assembly from
19+
// COM, set the ComVisible attribute to true on that type.
20+
[assembly: ComVisible(false)]
21+
22+
// The following GUID is for the ID of the typelib if this project is exposed to COM
23+
[assembly: Guid("590892dd-f842-4e7c-9400-4c6451c16b1a")]
24+
25+
// Version information for an assembly consists of the following four values:
26+
//
27+
// Major Version
28+
// Minor Version
29+
// Build Number
30+
// Revision
31+
//
32+
// You can specify all the values or you can default the Revision and Build Numbers
33+
// by using the '*' as shown below:
34+
[assembly: AssemblyVersion("1.0.0.0")]
35+
[assembly: AssemblyFileVersion("1.0.0.0")]
Lines changed: 147 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,147 @@
1+
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2+
<Import Project="..\..\packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.7\build\net45\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props" Condition="Exists('..\..\packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.7\build\net45\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props')" />
3+
<Import Project="..\..\packages\Microsoft.Net.Compilers.2.1.0\build\Microsoft.Net.Compilers.props" Condition="Exists('..\..\packages\Microsoft.Net.Compilers.2.1.0\build\Microsoft.Net.Compilers.props')" />
4+
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
5+
<PropertyGroup>
6+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
7+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
8+
<ProductVersion>
9+
</ProductVersion>
10+
<SchemaVersion>2.0</SchemaVersion>
11+
<ProjectGuid>{590892DD-F842-4E7C-9400-4C6451C16B1A}</ProjectGuid>
12+
<ProjectTypeGuids>{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>
13+
<OutputType>Library</OutputType>
14+
<AppDesignerFolder>Properties</AppDesignerFolder>
15+
<RootNamespace>SampleWebApp</RootNamespace>
16+
<AssemblyName>SampleWebApp</AssemblyName>
17+
<TargetFrameworkVersion>v4.7.1</TargetFrameworkVersion>
18+
<UseIISExpress>true</UseIISExpress>
19+
<Use64BitIISExpress />
20+
<IISExpressSSLPort />
21+
<IISExpressAnonymousAuthentication />
22+
<IISExpressWindowsAuthentication />
23+
<IISExpressUseClassicPipelineMode />
24+
<UseGlobalApplicationHostFile />
25+
<NuGetPackageImportStamp>
26+
</NuGetPackageImportStamp>
27+
</PropertyGroup>
28+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
29+
<DebugSymbols>true</DebugSymbols>
30+
<DebugType>full</DebugType>
31+
<Optimize>false</Optimize>
32+
<OutputPath>bin\</OutputPath>
33+
<DefineConstants>DEBUG;TRACE</DefineConstants>
34+
<ErrorReport>prompt</ErrorReport>
35+
<WarningLevel>4</WarningLevel>
36+
</PropertyGroup>
37+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
38+
<DebugSymbols>true</DebugSymbols>
39+
<DebugType>pdbonly</DebugType>
40+
<Optimize>true</Optimize>
41+
<OutputPath>bin\</OutputPath>
42+
<DefineConstants>TRACE</DefineConstants>
43+
<ErrorReport>prompt</ErrorReport>
44+
<WarningLevel>4</WarningLevel>
45+
</PropertyGroup>
46+
<ItemGroup>
47+
<Reference Include="Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=1.0.7.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
48+
<HintPath>..\..\packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.7\lib\net45\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll</HintPath>
49+
</Reference>
50+
<Reference Include="Microsoft.CSharp" />
51+
<Reference Include="System.Web.DynamicData" />
52+
<Reference Include="System.Web.Entity" />
53+
<Reference Include="System.Web.ApplicationServices" />
54+
<Reference Include="System.ComponentModel.DataAnnotations" />
55+
<Reference Include="System" />
56+
<Reference Include="System.Data" />
57+
<Reference Include="System.Core" />
58+
<Reference Include="System.Data.DataSetExtensions" />
59+
<Reference Include="System.Web.Extensions" />
60+
<Reference Include="System.Xml.Linq" />
61+
<Reference Include="System.Drawing" />
62+
<Reference Include="System.Web" />
63+
<Reference Include="System.Xml" />
64+
<Reference Include="System.Configuration" />
65+
<Reference Include="System.Web.Services" />
66+
<Reference Include="System.EnterpriseServices" />
67+
</ItemGroup>
68+
<ItemGroup>
69+
<Content Include="App_Data\settings.json" />
70+
<None Include="packages.config" />
71+
<None Include="Web.Debug.config">
72+
<DependentUpon>Web.config</DependentUpon>
73+
</None>
74+
<None Include="Web.Release.config">
75+
<DependentUpon>Web.config</DependentUpon>
76+
</None>
77+
</ItemGroup>
78+
<ItemGroup>
79+
<Content Include="App_Data\secrets.xml" />
80+
<Content Include="default.aspx" />
81+
<Content Include="Web.config" />
82+
</ItemGroup>
83+
<ItemGroup>
84+
<Compile Include="Properties\AssemblyInfo.cs" />
85+
</ItemGroup>
86+
<ItemGroup>
87+
<ProjectReference Include="..\..\src\Azure\Azure.csproj">
88+
<Project>{345c5437-4990-45dc-be34-6e37aa05d8d2}</Project>
89+
<Name>Azure</Name>
90+
</ProjectReference>
91+
<ProjectReference Include="..\..\src\Base\Base.csproj">
92+
<Project>{f382fbf8-146d-4968-a199-90d37f9ef9a7}</Project>
93+
<Name>Base</Name>
94+
</ProjectReference>
95+
<ProjectReference Include="..\..\src\Environment\Environment.csproj">
96+
<Project>{c6530e81-d8d8-47a8-912e-d2939f801835}</Project>
97+
<Name>Environment</Name>
98+
</ProjectReference>
99+
<ProjectReference Include="..\..\src\Json\Json.csproj">
100+
<Project>{84e0ce5d-4af2-414f-a940-22b3f93fc727}</Project>
101+
<Name>Json</Name>
102+
</ProjectReference>
103+
<ProjectReference Include="..\..\src\UserSecrets\UserSecrets.csproj">
104+
<Project>{c60d6cbb-d513-4692-81a6-0be5d45e4702}</Project>
105+
<Name>UserSecrets</Name>
106+
</ProjectReference>
107+
</ItemGroup>
108+
<PropertyGroup>
109+
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>
110+
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
111+
</PropertyGroup>
112+
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
113+
<Import Project="$(VSToolsPath)\WebApplications\Microsoft.WebApplication.targets" Condition="'$(VSToolsPath)' != ''" />
114+
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v10.0\WebApplications\Microsoft.WebApplication.targets" Condition="false" />
115+
<ProjectExtensions>
116+
<VisualStudio>
117+
<FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}">
118+
<WebProjectProperties>
119+
<UseIIS>True</UseIIS>
120+
<AutoAssignPort>True</AutoAssignPort>
121+
<DevelopmentServerPort>58254</DevelopmentServerPort>
122+
<DevelopmentServerVPath>/</DevelopmentServerVPath>
123+
<IISUrl>http://localhost:58254/</IISUrl>
124+
<NTLMAuthentication>False</NTLMAuthentication>
125+
<UseCustomServer>False</UseCustomServer>
126+
<CustomServerUrl>
127+
</CustomServerUrl>
128+
<SaveServerSettingsInUserFile>False</SaveServerSettingsInUserFile>
129+
</WebProjectProperties>
130+
</FlavorProperties>
131+
</VisualStudio>
132+
</ProjectExtensions>
133+
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
134+
<PropertyGroup>
135+
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
136+
</PropertyGroup>
137+
<Error Condition="!Exists('..\..\packages\Microsoft.Net.Compilers.2.1.0\build\Microsoft.Net.Compilers.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\Microsoft.Net.Compilers.2.1.0\build\Microsoft.Net.Compilers.props'))" />
138+
<Error Condition="!Exists('..\..\packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.7\build\net45\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.7\build\net45\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props'))" />
139+
</Target>
140+
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
141+
Other similar extension points exist, see Microsoft.Common.targets.
142+
<Target Name="BeforeBuild">
143+
</Target>
144+
<Target Name="AfterBuild">
145+
</Target>
146+
-->
147+
</Project>
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<PropertyGroup>
4+
<UseIISExpress>true</UseIISExpress>
5+
<Use64BitIISExpress />
6+
<IISExpressSSLPort />
7+
<IISExpressAnonymousAuthentication />
8+
<IISExpressWindowsAuthentication />
9+
<IISExpressUseClassicPipelineMode />
10+
<UseGlobalApplicationHostFile />
11+
</PropertyGroup>
12+
<ProjectExtensions>
13+
<VisualStudio>
14+
<FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}">
15+
<WebProjectProperties>
16+
<StartPageUrl>
17+
</StartPageUrl>
18+
<StartAction>CurrentPage</StartAction>
19+
<AspNetDebugging>True</AspNetDebugging>
20+
<SilverlightDebugging>False</SilverlightDebugging>
21+
<NativeDebugging>False</NativeDebugging>
22+
<SQLDebugging>False</SQLDebugging>
23+
<ExternalProgram>
24+
</ExternalProgram>
25+
<StartExternalURL>
26+
</StartExternalURL>
27+
<StartCmdLineArguments>
28+
</StartCmdLineArguments>
29+
<StartWorkingDirectory>
30+
</StartWorkingDirectory>
31+
<EnableENC>True</EnableENC>
32+
<AlwaysStartWebServerOnDebug>True</AlwaysStartWebServerOnDebug>
33+
</WebProjectProperties>
34+
</FlavorProperties>
35+
</VisualStudio>
36+
</ProjectExtensions>
37+
</Project>
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
3+
<!-- For more information on using web.config transformation visit https://go.microsoft.com/fwlink/?LinkId=125889 -->
4+
5+
<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
6+
<!--
7+
In the example below, the "SetAttributes" transform will change the value of
8+
"connectionString" to use "ReleaseSQLServer" only when the "Match" locator
9+
finds an attribute "name" that has a value of "MyDB".
10+
11+
<connectionStrings>
12+
<add name="MyDB"
13+
connectionString="Data Source=ReleaseSQLServer;Initial Catalog=MyReleaseDB;Integrated Security=True"
14+
xdt:Transform="SetAttributes" xdt:Locator="Match(name)"/>
15+
</connectionStrings>
16+
-->
17+
<system.web>
18+
<!--
19+
In the example below, the "Replace" transform will replace the entire
20+
<customErrors> section of your web.config file.
21+
Note that because there is only one customErrors section under the
22+
<system.web> node, there is no need to use the "xdt:Locator" attribute.
23+
24+
<customErrors defaultRedirect="GenericError.htm"
25+
mode="RemoteOnly" xdt:Transform="Replace">
26+
<error statusCode="500" redirect="InternalError.htm"/>
27+
</customErrors>
28+
-->
29+
</system.web>
30+
</configuration>
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
3+
<!-- For more information on using web.config transformation visit https://go.microsoft.com/fwlink/?LinkId=125889 -->
4+
5+
<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
6+
<!--
7+
In the example below, the "SetAttributes" transform will change the value of
8+
"connectionString" to use "ReleaseSQLServer" only when the "Match" locator
9+
finds an attribute "name" that has a value of "MyDB".
10+
11+
<connectionStrings>
12+
<add name="MyDB"
13+
connectionString="Data Source=ReleaseSQLServer;Initial Catalog=MyReleaseDB;Integrated Security=True"
14+
xdt:Transform="SetAttributes" xdt:Locator="Match(name)"/>
15+
</connectionStrings>
16+
-->
17+
<system.web>
18+
<compilation xdt:Transform="RemoveAttributes(debug)" />
19+
<!--
20+
In the example below, the "Replace" transform will replace the entire
21+
<customErrors> section of your web.config file.
22+
Note that because there is only one customErrors section under the
23+
<system.web> node, there is no need to use the "xdt:Locator" attribute.
24+
25+
<customErrors defaultRedirect="GenericError.htm"
26+
mode="RemoteOnly" xdt:Transform="Replace">
27+
<error statusCode="500" redirect="InternalError.htm"/>
28+
</customErrors>
29+
-->
30+
</system.web>
31+
</configuration>

samples/SampleWebApp/Web.config

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<!--
3+
For more information on how to configure your ASP.NET application, please visit
4+
https://go.microsoft.com/fwlink/?LinkId=169433
5+
-->
6+
<configuration>
7+
<configSections>
8+
<section name="configBuilders" type="System.Configuration.ConfigurationBuildersSection, System.Configuration, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" restartOnExternalChanges="false" requirePermission="false"/>
9+
</configSections>
10+
11+
<configBuilders>
12+
<builders>
13+
<add name="Environment" type="Microsoft.Configuration.ConfigurationBuilders.EnvironmentConfigBuilder, Microsoft.Configuration.ConfigurationBuilders.Environment, Version=1.0.0.0, Culture=neutral"/>
14+
<!-- <add name="Environment" mode="Expand" type="Microsoft.Configuration.ConfigurationBuilders.EnvironmentConfigBuilder, Microsoft.Configuration.ConfigurationBuilders.Environment, Version=1.0.0.0, Culture=neutral"/> -->
15+
<add name="Secrets" userSecretsFile="~/App_Data/secrets.xml" mode="Greedy" type="Microsoft.Configuration.ConfigurationBuilders.UserSecretsConfigBuilder, Microsoft.Configuration.ConfigurationBuilders.UserSecrets, Version=1.0.0.0, Culture=neutral"/>
16+
<add name="SimpleJson" jsonFile="~/App_Data/settings.json" ignoreMissingFile="true" type="Microsoft.Configuration.ConfigurationBuilders.SimpleJsonConfigBuilder, Microsoft.Configuration.ConfigurationBuilders.Json, Version=1.0.0.0, Culture=neutral"/>
17+
</builders>
18+
</configBuilders>
19+
20+
<appSettings configBuilders="Environment,SimpleJson,Secrets">
21+
<add key="WINDIR" value="Will be replaced by 'Environment' in Strict and Greedy modes."/>
22+
<add key="SYSTEMDRIVE" value="Will initally be replaced by 'Environment' in Strict and Greedy modes... but then superceded by 'Secrets' in the same modes."/>
23+
<add key="Value_Replaced_By_Environment_In_Expand_Mode" value="${WINDIR}"/>
24+
<add key="ARCHITECTURE" value="Will be replaced by 'Environment' in Strict/Greedy modes IFF prefix='PROCESSOR_' AND stripPrefix='true'"/>
25+
<add key="PROCESSOR_ARCHITECTURE" value="Will be left untouched by 'Environment' in Strict/Greedy modes if IFF prefix='PROCESSOR_' AND stripPrefix='true'"/>
26+
<add key="jsonSetting1" value="Will be replaced by 'SimpleJson' in Strict and Greedy modes."/>
27+
<add key="Value_Replaced_By_SimpleJson_In_Expand_Mode" value="${jsonSetting1}"/>
28+
<add key="appSettings:jsonSubSetting2" value="Will be replaced by 'SimpleJson' in Strict and Greedy modes."/>
29+
<add key="jsonSubSetting2" value="Will be replaced by 'SimpleJson' in 'Sectional' jsonMode."/>
30+
<add key="jsonSub:subSetting3" value="Will be replaced by 'SimpleJson' in 'Sectional' jsonMode."/>
31+
<add key="jsonConnectionString1" value="WILL be replaced by 'SimpleJson' in 'Flat' jsonMode."/>
32+
<add key="jsonConnectionString2" value="WILL NOT be replaced by 'SimpleJson' in 'Sectional' jsonMode."/>
33+
<add key="jsonCustomSetting1" value="Will be replaced by 'SimpleJson' with prefix='customSettings:' and stripPrefix='true'."/>
34+
</appSettings>
35+
36+
<connectionStrings configBuilders="SimpleJson">
37+
<add name="jsonConnectionString1" connectionString="Will be replaced by 'SimpleJson' in 'Flat' AND 'Sectional' jsonModes, but with different values."/>
38+
<add name="connectionStrings:jsonConnectionString1" connectionString="Will only be replaced by 'SimpleJson' in 'Flat' jsonMode."/>
39+
<add name="jsonConnectionString2" connectionString="Will only be replaced by 'SimpleJson' in 'Sectional' jsonMode."/>
40+
<add name="customSettings:jsonConnectionString2" connectionString="Will be replaced by 'SimpleJson' in 'Flat' jsonMode."/>
41+
</connectionStrings>
42+
43+
<system.web>
44+
<compilation debug="true" targetFramework="4.7.1"/>
45+
<httpRuntime targetFramework="4.7.1"/>
46+
</system.web>
47+
48+
<system.codedom>
49+
<compilers>
50+
<compiler language="c#;cs;csharp" extension=".cs" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.CSharpCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=1.0.7.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" warningLevel="4" compilerOptions="/langversion:default /nowarn:1659;1699;1701"/>
51+
<compiler language="vb;vbs;visualbasic;vbscript" extension=".vb" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.VBCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=1.0.7.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" warningLevel="4" compilerOptions="/langversion:default /nowarn:41008 /define:_MYTYPE=\&quot;Web\&quot; /optionInfer+"/>
52+
</compilers>
53+
</system.codedom>
54+
55+
<runtime>
56+
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
57+
<dependentAssembly>
58+
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30AD4FE6B2A6AEED" culture="neutral"/>
59+
<bindingRedirect oldVersion="0.0.0.0-11.0.0.0" newVersion="11.0.0.0"/>
60+
</dependentAssembly>
61+
</assemblyBinding>
62+
</runtime>
63+
</configuration>

0 commit comments

Comments
 (0)