Move to gitlink for symbols

This commit is contained in:
Antony Male 2015-06-02 19:47:14 +01:00
parent f58d0486c0
commit 3b01fac260
4 changed files with 17 additions and 9 deletions

BIN
NuGet/GitLink.exe Normal file

Binary file not shown.

View File

@ -18,9 +18,8 @@
<files>
<file src="..\Stylet\bin\Release\Stylet.dll" target="lib\net45"/>
<file src="..\Stylet\bin\Release\Stylet.pdb" target="lib\net45"/>
<file src="..\Stylet\bin\Release\Stylet.pdb.srcsrv" target="lib\net45"/>
<file src="..\Stylet\bin\Release\Stylet.xml" target="lib\net45"/>
<file src="..\Stylet\**\*.cs" target="src"/>
<file src="..\Stylet\**\*.xaml" target="src"/>
<file src="tools\**.*" target="tools"/>
<file src="content\**.*" target="content"/>
</files>

View File

@ -46,14 +46,11 @@ Don't forget to right-click your solution, and click "Enable NuGet package resto
I also publish symbols on [SymbolSource](http://www.symbolsource.org/Public), so you can use the NuGet package but still have access to Stylet's source when debugging. If you haven't yet set up Visual Studio to use SymbolSource, do that now:
In Visual Studio, go to Debug -> Options and Settings, and make the following changes:
Go to Debug -> Options and Settings -> General, and make the following changes:
1. In General
1. Turn **off** "Enable Just My Code"
2. Turn **off** "Enable .NET Framework source stepping". Yes, it is misleading, but if you don't, then Visual Studio will ignore your custom server order and only use its own servers.
3. Turn **on** "Enable source server support". You may have to OK a security warning.
2. In Symbols
1. Add "http://srv.symbolsource.org/pdb/Public" to the list.
1. Turn **off** "Enable Just My Code"
2. Turn **off** "Enable .NET Framework source stepping". Yes, it is misleading, but if you don't, then Visual Studio will ignore your custom server order and only use its own servers.
3. Turn **on** "Enable source server support". You may have to OK a security warning.
### Source

View File

@ -10,6 +10,9 @@ CONFIG = ENV['CONFIG'] || 'Debug'
COVERAGE_DIR = 'Coverage'
COVERAGE_FILE = File.join(COVERAGE_DIR, 'coverage.xml')
GITLINK_REMOTE = 'https://github.com/canton7/stylet'
NUSPEC = 'NuGet/Stylet.nuspec'
directory COVERAGE_DIR
desc "Build Stylet.sln using the current CONFIG (or Debug)"
@ -96,6 +99,15 @@ def coverage(coverage_files)
sh REPORT_GENERATOR, %Q{-reports:"#{coverage_files.join(';')}" "-targetdir:#{COVERAGE_DIR}"}
end
desc "Create NuGet package"
task :package do
local_hash = `git rev-parse HEAD`.chomp
sh "NuGet/GitLink.exe . -s #{local_hash} -u #{GITLINK_REMOTE} -f Stylet.sln -ignore StyletUnitTests,StyletIntegrationTests"
Dir.chdir(File.dirname(NUSPEC)) do
sh "nuget.exe pack #{File.basename(NUSPEC)}"
end
end
desc "Extract StyletIoC as a standalone file"
task :"extract-stylet-ioc" do
filenames = Dir['Stylet/StyletIoC/**/*.cs']