This file contains 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
# Origin: https://github.com/SchwabenCode/FlexMapper | |
language: csharp | |
solution: src/SchwabenCode.FlexMapper.sln | |
install: | |
- curl -sSL https://raw.githubusercontent.com/aspnet/Home/dev/dnvminstall.sh | DNX_BRANCH=dev sh && source ~/.dnx/dnvm/dnvm.sh | |
- dnvm upgrade | |
- dnu restore |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
{ | |
"version": "0.0.9", | |
"description": "Map your stuff! ", | |
"authors": [ "SCHWABENCODE", "BenjaminAbt" ], | |
"owners": [ "SCHWABENCODE", "BenjaminAbt" ], | |
"tags": [ "Mapping, FlexMapper, SchwabenCode, BenjaminAbt" ], | |
"projectUrl": "https://github.com/SchwabenCode/FlexMapper", | |
"licenseUrl": "https://github.com/SchwabenCode/FlexMapper/LICENSE.md", | |
"dependencies": { |
This file contains 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
#-------------------------------------------------# | |
# GENERAL # | |
#-------------------------------------------------# | |
version: 0.0.9.{build}-develop | |
#-------------------------------------------------# | |
# ENVIRONMENT # | |
#-------------------------------------------------# | |
os: Visual Studio 2015 | |
environment: |
This file contains 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
#-------------------------------------------------# | |
# GENERAL # | |
#-------------------------------------------------# | |
version: 1.1.0.{build}-develop | |
#-------------------------------------------------# | |
# ENVIRONMENT # | |
#-------------------------------------------------# | |
os: Visual Studio 2015 | |
environment: |
This file contains 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
XmlDocument xmlDoc = new XmlDocument( ); | |
XmlElement xmlRoot = xmlDoc.CreateElement( "XMLRootName" ); | |
root.SetAttribute( "demo", "SchwabenCode" ); | |
XmlElement child = xmlDoc.CreateElement( "KindElement" ); | |
child.InnerText = "Dies ist ein BeispielText"; | |
xmlRoot.AppendChild( child ); | |
xmlDoc.AppendChild( xmlRoot ); |
This file contains 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
XDocument doc = new XDocument( | |
new XElement( "XMLRootName", | |
new XAttribute( "demo", "SchwabenCode" ), | |
new XElement( "KindElement", "Dies ist ein BeispielText" ))); |
This file contains 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
<XMLRootName demo="SchwabenCode"> | |
<KindElement>Dies ist ein BeispielText</KindElement> | |
</XMLRootName> |
This file contains 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" standalone="yes" ?> | |
<MediaDatenbank> | |
<!-- Liste von Filmen --> | |
<Filme> | |
<Film Id="1" Jahr="1996"> | |
<Name>The Rock</Name> | |
<Land>USA</Land> | |
<FSK>16</FSK> | |
<Person IdRef="1" Typ="Hauptdarsteller" /> | |
<Person IdRef="2" Typ="Regisseur" /> |
This file contains 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
// Find all Bands | |
IBandInfo[ ] allBands = await BandClientManager.Instance.GetBandsAsync(); | |
if( !allBands.Any() ) | |
{ | |
throw new NoBandFoundException(); | |
} | |
// Use first Band | |
IBandInfo bandInfo = allBands.First(); |
OlderNewer