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:
Praburaj 2014-04-11 16:36:28 -07:00
parent 1b62b248e4
commit b37c811266
3 changed files with 11 additions and 8 deletions

View File

@ -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
{
}
}

View File

@ -11,10 +11,4 @@ namespace Microsoft.Net.Runtime
string ApplicationBasePath { get; }
FrameworkName TargetFramework { get; }
}
[AssemblyNeutral]
[AttributeUsage(AttributeTargets.All, Inherited = false, AllowMultiple = true)]
public sealed class AssemblyNeutralAttribute : Attribute
{
}
}

View File

@ -10,8 +10,6 @@
<!-- Change below value to 'false' to run on full desktop -->
<add key="K" value="true" />
<add key="DefaultAdminUsername" value="Administrator" />
<add key="DefaultAdminPassword" value="YouShouldChangeThisPassword" />
</appSettings>
</configuration>