Browse Source

Add missing dependencies for NSvn.

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@1215 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
shortcuts
Daniel Grunwald 20 years ago
parent
commit
ebaaf98ada
  1. 20
      src/AddIns/Misc/SubversionAddIn/Project/SubversionAddIn.csproj
  2. 3
      src/Tools/SVNChangeLogToXml/Main.cs
  3. 28
      src/Tools/SVNChangeLogToXml/SVNChangelogToXml.csproj

20
src/AddIns/Misc/SubversionAddIn/Project/SubversionAddIn.csproj

@ -105,13 +105,29 @@ @@ -105,13 +105,29 @@
</ProjectReference>
<Content Include="..\RequiredLibraries\msvcp70.dll">
<Link>msvcp70.dll</Link>
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="..\RequiredLibraries\msvcr70.dll">
<Link>msvcr70.dll</Link>
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Resources\TortoiseSvnNotFoundForm.xfrm" />
<Content Include="..\RequiredLibraries\LIBAPR.DLL">
<Link>LIBAPR.DLL</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="..\RequiredLibraries\LibAprIconv.Dll">
<Link>LibAprIconv.Dll</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="..\RequiredLibraries\LibAprUtil.Dll">
<Link>LibAprUtil.Dll</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="..\RequiredLibraries\LibDB42.dll">
<Link>LibDB42.dll</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSHARP.Targets" />
</Project>

3
src/Tools/SVNChangeLogToXml/Main.cs

@ -28,9 +28,6 @@ class MainClass @@ -28,9 +28,6 @@ class MainClass
Console.WriteLine("Working directory must be SharpDevelop\\src or SharpDevelop\\bin!");
return 2;
}
string appDir = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);
File.Copy(@"AddIns\Misc\SubversionAddIn\RequiredLibraries\msvcr70.dll", Path.Combine(appDir, "msvcr70.dll"), true);
File.Copy(@"AddIns\Misc\SubversionAddIn\RequiredLibraries\msvcp70.dll", Path.Combine(appDir, "msvcp70.dll"), true);
if (args.Length == 1 && args[0] == "--REVISION") {
CreateRevisionFile();
}

28
src/Tools/SVNChangeLogToXml/SVNChangelogToXml.csproj

@ -53,5 +53,31 @@ @@ -53,5 +53,31 @@
<ItemGroup>
<Compile Include="Main.cs" />
</ItemGroup>
<ItemGroup>
<Content Include="..\..\AddIns\Misc\SubversionAddIn\RequiredLibraries\LIBAPR.DLL">
<Link>LIBAPR.DLL</Link>
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="..\..\AddIns\Misc\SubversionAddIn\RequiredLibraries\LibAprIconv.Dll">
<Link>LibAprIconv.Dll</Link>
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="..\..\AddIns\Misc\SubversionAddIn\RequiredLibraries\LibAprUtil.Dll">
<Link>LibAprUtil.Dll</Link>
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="..\..\AddIns\Misc\SubversionAddIn\RequiredLibraries\LibDB42.dll">
<Link>LibDB42.dll</Link>
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="..\..\AddIns\Misc\SubversionAddIn\RequiredLibraries\msvcp70.dll">
<Link>msvcp70.dll</Link>
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="..\..\AddIns\Misc\SubversionAddIn\RequiredLibraries\msvcr70.dll">
<Link>msvcr70.dll</Link>
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSHARP.Targets" />
</Project>
</Project>
Loading…
Cancel
Save