Skip to content
This repository has been archived by the owner on Dec 18, 2018. It is now read-only.

Commit

Permalink
Remove [AssemblyNeutral] attributes
Browse files Browse the repository at this point in the history
  • Loading branch information
bricelam committed Feb 12, 2015
1 parent 0064513 commit 9c281f3
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 19 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@

namespace Microsoft.Framework.ConfigurationModel
{
#if ASPNET50 || ASPNETCORE50
[Microsoft.Framework.Runtime.AssemblyNeutral]
#endif
public interface ICommitableConfigurationSource
{
void Commit();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@

namespace Microsoft.Framework.ConfigurationModel
{
#if ASPNET50 || ASPNETCORE50
[Microsoft.Framework.Runtime.AssemblyNeutral]
#endif
public interface IConfiguration
{
string this[string key] { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@

namespace Microsoft.Framework.ConfigurationModel
{
#if ASPNET50 || ASPNETCORE50
[Microsoft.Framework.Runtime.AssemblyNeutral]
#endif
public interface IConfigurationSource
{
bool TryGet(string key, out string value);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@

namespace Microsoft.Framework.ConfigurationModel
{
#if ASPNET50 || ASPNETCORE50
[Microsoft.Framework.Runtime.AssemblyNeutral]
#endif
public interface IConfigurationSourceContainer : IConfiguration, IEnumerable<IConfigurationSource>
{
IConfigurationSourceContainer Add(IConfigurationSource configurationSource);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,7 @@
},
"frameworks": {
"net45": { },
"aspnet50": {
"dependencies": {
"Microsoft.Framework.Runtime.Interfaces": "1.0.0-*"
}
},
"aspnet50": { },
"aspnetcore50": {
"dependencies": {
"System.Collections": "4.0.10-beta-*",
Expand All @@ -19,8 +15,7 @@
"System.Linq": "4.0.0-beta-*",
"System.Resources.ResourceManager": "4.0.0-beta-*",
"System.Runtime.Extensions": "4.0.10-beta-*",
"System.Runtime.InteropServices": "4.0.20-beta-*",
"Microsoft.Framework.Runtime.Interfaces": "1.0.0-*"
"System.Runtime.InteropServices": "4.0.20-beta-*"
}
},
".NETPortable,Version=v4.6,Profile=Profile151": {
Expand Down

0 comments on commit 9c281f3

Please sign in to comment.