CR feedback
1. Creating a separate file for AssemblyNeutralInterface. 2. Removing the user name and password settings from web.config.
This commit is contained in:
parent
1b62b248e4
commit
b37c811266
|
|
@ -0,0 +1,11 @@
|
||||||
|
using System;
|
||||||
|
using System.Runtime.Versioning;
|
||||||
|
|
||||||
|
namespace Microsoft.Net.Runtime
|
||||||
|
{
|
||||||
|
[AssemblyNeutral]
|
||||||
|
[AttributeUsage(AttributeTargets.All, Inherited = false, AllowMultiple = true)]
|
||||||
|
public sealed class AssemblyNeutralAttribute : Attribute
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -11,10 +11,4 @@ namespace Microsoft.Net.Runtime
|
||||||
string ApplicationBasePath { get; }
|
string ApplicationBasePath { get; }
|
||||||
FrameworkName TargetFramework { get; }
|
FrameworkName TargetFramework { get; }
|
||||||
}
|
}
|
||||||
|
|
||||||
[AssemblyNeutral]
|
|
||||||
[AttributeUsage(AttributeTargets.All, Inherited = false, AllowMultiple = true)]
|
|
||||||
public sealed class AssemblyNeutralAttribute : Attribute
|
|
||||||
{
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
@ -10,8 +10,6 @@
|
||||||
<!-- Change below value to 'false' to run on full desktop -->
|
<!-- Change below value to 'false' to run on full desktop -->
|
||||||
<add key="K" value="true" />
|
<add key="K" value="true" />
|
||||||
|
|
||||||
<add key="DefaultAdminUsername" value="Administrator" />
|
|
||||||
<add key="DefaultAdminPassword" value="YouShouldChangeThisPassword" />
|
|
||||||
</appSettings>
|
</appSettings>
|
||||||
|
|
||||||
</configuration>
|
</configuration>
|
||||||
Loading…
Reference in New Issue