Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
language: csharp
solution: src/IniFileParser.sln
solution: src/IniParser.sln

install:
- ./install.sh
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ data["UI"]["fullscreen"] = "true";
parser.WriteFile("Configuration.ini", data);
```

Head to the [wiki](https://github.com/rickyah/ini-parser/wiki) for more usage examples, or [check out the code of the example project](https://github.com/rickyah/ini-parser/blob/development/src/IniFileParser.Example/Program.cs)
Head to the [wiki](https://github.com/rickyah/ini-parser/wiki) for more usage examples, or [check out the code of the example project](https://github.com/rickyah/ini-parser/blob/development/src/IniParser.Example/Program.cs)


## Merging ini files
Expand Down
6 changes: 3 additions & 3 deletions bin/bump-version
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ case $COMMAND in
list)
if [ -z "$FILE_PATH" ]
then
FILE_PATH="./src/IniFileParser/Properties/AssemblyInfo.cs"
FILE_PATH="./src/IniParser/Properties/AssemblyInfo.cs"
fi

eval $LIST_CMD
Expand All @@ -61,7 +61,7 @@ case $COMMAND in

if [ -z "$FILE_PATH" ]
then
FILE_PATH="./src/IniFileParser/Properties/AssemblyInfo.cs"
FILE_PATH="./src/IniParser/Properties/AssemblyInfo.cs"
fi

NEW_VERSION_REPLACE1='\[assembly: AssemblyVersion\("'$NEW_VERSION'"\)\]'
Expand All @@ -79,7 +79,7 @@ case $COMMAND in
eval $LIST_CMD

printf 'Saving change to git'
git add ./src/IniFileParser/Properties/AssemblyInfo.cs
git add ./src/IniParser/Properties/AssemblyInfo.cs
git cm "Bumping version to $NEW_VERSION"
;;
esac
Expand Down
6 changes: 3 additions & 3 deletions bin/nuget-pack
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ nuget restore src/INIFileParser.sln
xbuild src/INIFileParser.sln /nologo /verbosity:normal /p:Configuration=Release

# run tests
mono ./src/packages/NUnit.Runners.2.6.4/tools/nunit-console.exe -noxml -nodots -labels ./src/IniFileParser.Tests/bin/Release/IniFileParser.Tests.dll
mono ./src/packages/NUnit.Runners.2.6.4/tools/nunit-console.exe -noxml -nodots -labels ./src/IniParser.Tests/bin/Release/IniParser.Tests.dll

# strong sign assembly
sn -R lib/INIFileParser.dll ./src/IniFileParser/Properties/publickey.snk
sn -R lib/INIFileParser.dll ./src/IniParser/Properties/publickey.snk

mkdir -p build

VERSION=$(monodis --assembly lib/INIFileParser.dll | grep Version | cut -d':' -f2 | tr -d ' ' | cut -c1-5)

# generate the nuget package
mono --runtime=v4.0 ~/bin/NuGet.exe pack ./src/IniFileParser/INIFileParser.nuspec -NoDefaultExcludes -OutputDirectory ./build -Version $VERSION
mono --runtime=v4.0 ~/bin/NuGet.exe pack ./src/IniParser/INIFileParser.nuspec -NoDefaultExcludes -OutputDirectory ./build -Version $VERSION
4 changes: 2 additions & 2 deletions src/DocumentationBuilder.shfb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<project schemaVersion="1.6.0.7">
<assemblies>
<assembly assemblyPath=".\build\IniFileParser.dll" xmlCommentsPath=".\build\IniFileParser.xml" commentsOnly="False" />
<assembly assemblyPath=".\build\IniParser.dll" xmlCommentsPath=".\build\IniParser.xml" commentsOnly="False" />
</assemblies>
<namespaceSummaries>
<namespaceSummaryItem name="" isDocumented="False" />
Expand Down Expand Up @@ -28,7 +28,7 @@ An implementation for reading / writing INI data to streams, files and strings i
<RootNamespaceContainer>False</RootNamespaceContainer>
<RootNamespaceTitle />
<HelpTitle>A simple C# library for reading and writing INI files</HelpTitle>
<HtmlHelpName>IniFileParserDocumentation</HtmlHelpName>
<HtmlHelpName>IniParserDocumentation</HtmlHelpName>
<Language>en-US</Language>
<CopyrightHref />
<CopyrightText />
Expand Down