Update the LLVM VS integration to sign the assembly.

llvm-svn: 338740
This commit is contained in:
Zachary Turner 2018-08-02 17:20:31 +00:00
parent 5b0456d0ce
commit bd45adb50f
2 changed files with 10 additions and 9 deletions

View File

@ -1,2 +1,6 @@
bin obj/
obj bin/
.vs/
Key.snk
packages/
*.csproj.user

View File

@ -64,6 +64,7 @@
<None Include="source.extension.vsixmanifest"> <None Include="source.extension.vsixmanifest">
<SubType>Designer</SubType> <SubType>Designer</SubType>
</None> </None>
<None Include="Key.snk" />
<Content Include="Platformx64\Toolset.props"> <Content Include="Platformx64\Toolset.props">
<IncludeInVSIX>true</IncludeInVSIX> <IncludeInVSIX>true</IncludeInVSIX>
<InstallRoot>VCTargets</InstallRoot> <InstallRoot>VCTargets</InstallRoot>
@ -90,11 +91,7 @@
</ItemGroup> </ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Import Project="$(VSToolsPath)\VSSDK\Microsoft.VsSDK.targets" Condition="'$(VSToolsPath)' != ''" /> <Import Project="$(VSToolsPath)\VSSDK\Microsoft.VsSDK.targets" Condition="'$(VSToolsPath)' != ''" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it. <PropertyGroup>
Other similar extension points exist, see Microsoft.Common.targets. <PreBuildEvent>if not exist $(ProjectDir)Key.snk ("$(TargetFrameworkSDKToolsDirectory)\x64\sn.exe" -k $(ProjectDir)Key.snk)</PreBuildEvent>
<Target Name="BeforeBuild"> </PropertyGroup>
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project> </Project>