|
|
|
Forum Newbie
      
Group: Customers
Last Login: 05/08/2008 13:31:25
Posts: 17,
Visits: 75
|
|
| Does someone know how I can fix this error? I have tried permissions to access it through .net wizzards and .net security in control Panel, but it comes up about 6 times whenever I try to load the project in VS. Thanks! By the way, it says: The project is not fully trusted by the .net runtime. This is usually because it is either a network share or mapped to a network share not on the local machine. If the output path is under the project location, your code will not execute as fully trusted and you may receive unexpected security exceptions.
|
|
|
|
|
Supreme Being
      
Group: Customers
Last Login: 30/12/2008 00:19:04
Posts: 693,
Visits: 2,419
|
|
|
|
|
|
Forum Newbie
      
Group: Customers
Last Login: 05/08/2008 13:31:25
Posts: 17,
Visits: 75
|
|
I tried that and with no luck. This error is driving me NUTS! Thanks anyway Greg
|
|
|
|
|
Forum Newbie
      
Group: Customers
Last Login: 05/08/2008 13:31:25
Posts: 17,
Visits: 75
|
|
| I got it. It was question 6 in that document that worked for me if anyone has this problem. - Can I prevent local user and machine policy from interfering with specific enterprise policy settings I have made?
- Users or machine administrators can further reduce the level of permissions granted to a specific assembly from the enterprise policy level. You can stop this by using code groups with a LevelFinal attribute at the enterprise policy level. This attribute will prevent the evaluation of any administrable policy levels below the one in which it is applied. If a code group in enterprise policy is marked with the LevelFinal attribute, and during policy evaluation of enterprise policy this code group applies, then machine and user policy are not evaluated and the only permissions an assembly matching this code group gets are those handed out by the enterprise policy level.
- Follow these steps to turn on the LevelFinal attribute on a code group in enterprise policy:
- Open Control Panel.
- Open the Administrative Tools folder.
- Double-click Microsoft .NET Framework Configuration.
- In the Microsoft .NET Framework Configuration tool, open the Runtime Security Policy node.
- Open the Enterprise policy level.
- Open the Code Groups folder and right-click the code group that you want to mark with the LevelFinal attribute.
- Select the Properties option.
- On the General tab, check the Policy levels below will not be evaluated box.
- Click Apply.
Thanks for the link. Greg
|
|
|
|