This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Initially I saw this on this web site | |
http://h2ik.co/2011/03/having-fun-with-git-subtree/ | |
And with google i came up to this | |
https://github.com/blog/122-embedded-gists | |
And now it is time to try this for my own | |
https://gist.github.com/2967475 | |
Customizing your embedded gists with CSS |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<configuration> | |
<configSections> | |
<section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net" /> | |
</configSections> | |
<log4net> | |
<!-- Define some output appenders --> | |
<appender name="RollingLogFileAppenderDebug" type="log4net.Appender.RollingFileAppender"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void Main() | |
{ | |
var listOfI = GetInts(); | |
foreach (var i in listOfI) | |
{ | |
Console.WriteLine(i); | |
} | |
Console.WriteLine("******"); | |
Console.WriteLine("jetzt 1-stellige"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<property name="UserAddinDir" value="${environment::get-folder-path('USERPROFILE')}\Documents\ArcGIS\AddIns\Desktop10.0\{288DE52A-7E39-4D4F-BC18-8E3AB07FB5BC}" /> | |
<property name="UserExtractedAddinDir" value="${environment::get-folder-path('LocalApplicationData')}\ESRI\Desktop10.0\AssemblyCache\{AFBE0B57-7391-D0A3-D63D-3F31CFB78FAE}" /> | |
<target name="clean" description="remove all generated files"> | |
<delete dir="${UserAddinDir}" /> | |
<delete dir="${UserExtractedAddinDir}" /> | |
</target> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<settings> | |
<repositoryPath>..\..\lib\Nuget-Packages</repositoryPath> | |
</settings> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
<PropertyGroup> | |
<BuildDependsOn>$(BuildDependsOn);FxCop</BuildDependsOn> | |
<RebuildDependsOn>$(RebuildDependsOn);FxCop</RebuildDependsOn> | |
</PropertyGroup> | |
<Target Name="FxCop"> | |
<Exec | |
Command=""$(TargetDir)..\tools\FxCop\FxCopCmd.exe" /file:"$(TargetPath)" /project:"$(TargetDir)..\src\BuildOnly.FxCop" /directory:"$(TargetDir)..\lib\Microsoft" /dictionary:"$(TargetDir)..\src\FxCop.CustomDictionary.xml" /out:"$(TargetDir)$(ProjectName).FxCopReport.xml" /console /forceoutput /ignoregeneratedcode"> | |
</Exec> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- in der ItemGroup für den Projekt-Content--> | |
<!-- gemeinsame AssemblyInfo.Commons im zentralen src-Folder einlinken --> | |
<Compile Include="..\..\AssemblyInfo.Common.cs"> | |
<Link>Properties\AssemblyInfo.Common.cs</Link> | |
</Compile> | |
<!-- in der ItemGroup für den Projekt-Content--> | |
<!-- Ressourcen unter den Properties-Folder vorhalten um den eigentlichen Code möglichst clean zu halten --> | |
<EmbeddedResource Include="Properties\LocalizableResources.resx"> | |
<Generator>ResXFileCodeGenerator</Generator> |