I am editing a project written by someone else. The issue is that there seems to a hidden build event. The event is copying a ini file to my c:/ drive. But the build gives the following error: "Unable to copy fille to access to is denied. I have looked and there is no pre-build event in the project, so I'm at a loss for why it is trying to create the file in the first place. I could remove the permissions on the folder and just let it copy the file, but I would rather know where Visual Studio is being told to copy the file in the first place.
Any insight would be greatly appreciated.
Edit
So this is in the vbproj:
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<DefineDebug>true</DefineDebug>
<DefineTrace>true</DefineTrace>
<OutputPath>..\..\..\..\..\..\..\..\ProgramData\Autodesk\ApplicationPlugins\Tools.bundle\Contents\</OutputPath>
<DocumentationFile>
</DocumentationFile>
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
</PropertyGroup>
Can I edit that in notepad? Seems like I should be able to delete it somewhere.