Made the post build event on BoxPlugin always run, so the credentials files are back where they belong. Also removed the app.config as it's not needed for a DLL...

git-svn-id: http://svn.code.sf.net/p/greenshot/code/trunk@2479 7dccd23d-a4a3-4e1f-8c07-b4c1b4018ab4
This commit is contained in:
RKrom 2013-02-12 07:02:19 +00:00
parent 3becf11cfd
commit c9e1ef30e4
2 changed files with 1 additions and 23 deletions

View file

@ -12,7 +12,7 @@
<NoStdLib>False</NoStdLib>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent>
<RunPostBuildEvent>Always</RunPostBuildEvent>
<TargetFrameworkProfile />
</PropertyGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.Targets" />
@ -51,9 +51,6 @@
<ItemGroup>
<Folder Include="Resources\" />
</ItemGroup>
<ItemGroup>
<None Include="app.config" />
</ItemGroup>
<ItemGroup>
<None Include="box.png" />
<Content Include="Languages\language_Boxplugin-en-US.xml" />

View file

@ -1,19 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="boxnetBinding" closeTimeout="00:01:00" openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00" allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard" maxBufferSize="65536" maxBufferPoolSize="524288" maxReceivedMessageSize="65536" messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered" useDefaultWebProxy="true">
<readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384" maxBytesPerRead="4096" maxNameTableCharCount="16384" />
<security mode="None">
<transport clientCredentialType="None" proxyCredentialType="None" realm="" />
<message clientCredentialType="UserName" algorithmSuite="Default" />
</security>
</binding>
</basicHttpBinding>
</bindings>
<client>
<endpoint address="http://box.net/api/1.0/soap" binding="basicHttpBinding" bindingConfiguration="boxnetBinding" contract="BoxNet.boxnetPort" name="boxnetPort" />
</client>
</system.serviceModel>
<startup><supportedRuntime version="v2.0.50727" /></startup></configuration>