我想知道如何将.vbproj文件中的引用更改为用户的本地路径,因为不同用户的项目文件夹不同。
例如,.vbproj文件中的引用是:
<Reference Include="Spire.Common, Version=1.2.43.7035, Culture=neutral, PublicKeyToken=663f351905198cb3, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
HintPath>C:\Users\Maple\AppData\Local\Temp\DeskApp\DeskApp\bin\Debug\Spire.Common.dll</HintPath>
</Reference>
哪个Maple是我的本地用户名,我希望将其更改为:
C:\Users\**UserName**\AppData\Local\Temp\DeskApp\DeskApp\bin\Debug\Spire.Common.dll
有可能吗?感谢。
答案 0 :(得分:0)
试试这个:
${env:username}
它会指向Windows用户名。