Skip to content

Commit 0468109

Browse files
committed
v1.0.1
1 parent ef1cdd3 commit 0468109

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
lines changed

src/Lib/PCLAppConfig.FileSystemStream/PortableStream.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,14 +45,14 @@ private static Stream GetStream(string configPath)
4545
{
4646
if (!File.Exists(configPath))
4747
{
48-
var dllConfigPath = configPath.Replace("iOS.exe", ".dll");
48+
var dllConfigPath = configPath.Replace("iOS.exe", "dll");
4949

5050
var dllConfigPathExists = File.Exists(dllConfigPath);
5151

5252
if (dllConfigPathExists)
5353
return File.OpenRead(dllConfigPath);
5454

55-
throw new FileNotFoundException($"path: {configPath}");
55+
throw new FileNotFoundException($"path: {configPath} and {dllConfigPath}");
5656
}
5757

5858
return File.OpenRead(configPath);

src/Lib/PCLAppConfig/PCLAppConfig.csproj

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<TargetFramework>netstandard2.0</TargetFramework>
4-
<Version>0.4.0</Version>
4+
<Version>1.0.1</Version>
55
<Authors>Ben Ishiyama-levy (Xamariners), Seyyed Soroosh Hosseinalipour</Authors>
66
<Company>Xamariners</Company>
77
<Description>Cross platform Xamarin AppSettings reader</Description>
@@ -11,11 +11,14 @@
1111
<PackageIconUrl>https://avatars2.githubusercontent.com/u/2474918</PackageIconUrl>
1212
<RepositoryUrl>https://github.com/mrbrl/PCLAppConfig</RepositoryUrl>
1313
<PackageTags>xamarin xamarin.forms Standard Config App.Config AppSettings Configuration ConfigurationManager uwp winrt android ios xamarin monoandroid monodroid monotouch xamariners</PackageTags>
14-
<PackageReleaseNotes>- 0.4.0: .Net Standard Update
14+
<PackageReleaseNotes>
15+
- 1.0.1: updates - ios fix for app.config location
16+
- 0.4.0: .Net Standard Update
1517
- 0.3.3: PortableStream.Current now can be use in PCL project.
1618
- 0.3.2: Update to latest dependencies, Update Doc
1719
- 0.3.1: Added tests and package icon
18-
- 0.3.0: Initial Release</PackageReleaseNotes>
20+
- 0.3.0: Initial Release
21+
</PackageReleaseNotes>
1922
<NeutralLanguage></NeutralLanguage>
2023
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
2124
</PropertyGroup>

src/PCLAppConfig.nuspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
<package >
33
<metadata>
44
<id>PCLAppConfig</id>
5-
<version>1.0.0</version>
5+
<version>1.0.1</version>
66
<title>PCL AppConfig - Portable AppSettings Reader</title>
77
<authors>Ben Ishiyama-levy (Xamariners), Seyyed Soroosh Hosseinalipour</authors>
88
<owners>Ben Ishiyama-levy (Xamariners)</owners>
99
<description>
1010
Cross platform Xamarin AppSettings reader
1111
</description>
1212
<releaseNotes>
13-
- 1.0.0: updates - ios fix for app.config location
13+
- 1.0.1: updates - ios fix for app.config location
1414
- 0.4.1: .Net Standard Update
1515
- 0.3.3: PortableStream.Current now can be use in PCL project.
1616
- 0.3.2: Update to latest dependencies, Update Doc

0 commit comments

Comments
 (0)