| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -51,7 +51,6 @@ | |||
| 51 | 51 | </ItemGroup> | |
| 52 | 52 | ||
| 53 | 53 | <ItemGroup> | |
| 54 | - <PackageReference Include="System.Security.Permissions" Version="4.4.0" /> | ||
| 55 | 54 | <PackageReference Include="System.Reflection.Emit" Version="4.3.0" /> | |
| 56 | 55 | <PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" /> | |
| 57 | 56 | </ItemGroup> | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,6 +1,5 @@ | |||
| 1 | 1 | using System; | |
| 2 | 2 | using System.Reflection; | |
| 3 | - using System.Security.Permissions; | ||
| 4 | 3 | ||
| 5 | 4 | namespace Python.Runtime | |
| 6 | 5 | { | |
@@ -15,7 +14,6 @@ internal class PropertyObject : ExtensionType | |||
| 15 | 14 | private MaybeMethodInfo getter; | |
| 16 | 15 | private MaybeMethodInfo setter; | |
| 17 | 16 | ||
| 18 | - [StrongNameIdentityPermission(SecurityAction.Assert)] | ||
| 19 | 17 | public PropertyObject(PropertyInfo md) | |
| 20 | 18 | { | |
| 21 | 19 | getter = md.GetGetMethod(true); | |
| Back | FazBrowse Home | New Git URL |
0 commit comments