Commit 0468109 1 parent ef1cdd3 commit 0468109 Copy full SHA for 0468109
File tree 3 files changed +10
-7
lines changed
PCLAppConfig.FileSystemStream
3 files changed +10
-7
lines changed Original file line number Diff line number Diff line change @@ -45,14 +45,14 @@ private static Stream GetStream(string configPath)
45
45
{
46
46
if ( ! File . Exists ( configPath ) )
47
47
{
48
- var dllConfigPath = configPath . Replace ( "iOS.exe" , ". dll" ) ;
48
+ var dllConfigPath = configPath . Replace ( "iOS.exe" , "dll" ) ;
49
49
50
50
var dllConfigPathExists = File . Exists ( dllConfigPath ) ;
51
51
52
52
if ( dllConfigPathExists )
53
53
return File . OpenRead ( dllConfigPath ) ;
54
54
55
- throw new FileNotFoundException ( $ "path: { configPath } ") ;
55
+ throw new FileNotFoundException ( $ "path: { configPath } and { dllConfigPath } ") ;
56
56
}
57
57
58
58
return File . OpenRead ( configPath ) ;
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
<PropertyGroup >
3
3
<TargetFramework >netstandard2.0</TargetFramework >
4
- <Version >0.4.0 </Version >
4
+ <Version >1.0.1 </Version >
5
5
<Authors >Ben Ishiyama-levy (Xamariners), Seyyed Soroosh Hosseinalipour</Authors >
6
6
<Company >Xamariners</Company >
7
7
<Description >Cross platform Xamarin AppSettings reader</Description >
11
11
<PackageIconUrl >https://avatars2.githubusercontent.com/u/2474918</PackageIconUrl >
12
12
<RepositoryUrl >https://github.com/mrbrl/PCLAppConfig</RepositoryUrl >
13
13
<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
15
17
- 0.3.3: PortableStream.Current now can be use in PCL project.
16
18
- 0.3.2: Update to latest dependencies, Update Doc
17
19
- 0.3.1: Added tests and package icon
18
- - 0.3.0: Initial Release</PackageReleaseNotes >
20
+ - 0.3.0: Initial Release
21
+ </PackageReleaseNotes >
19
22
<NeutralLanguage ></NeutralLanguage >
20
23
<GeneratePackageOnBuild >true</GeneratePackageOnBuild >
21
24
</PropertyGroup >
Original file line number Diff line number Diff line change 2
2
<package >
3
3
<metadata >
4
4
<id >PCLAppConfig</id >
5
- <version >1.0.0 </version >
5
+ <version >1.0.1 </version >
6
6
<title >PCL AppConfig - Portable AppSettings Reader</title >
7
7
<authors >Ben Ishiyama-levy (Xamariners), Seyyed Soroosh Hosseinalipour</authors >
8
8
<owners >Ben Ishiyama-levy (Xamariners)</owners >
9
9
<description >
10
10
Cross platform Xamarin AppSettings reader
11
11
</description >
12
12
<releaseNotes >
13
- - 1.0.0 : updates - ios fix for app.config location
13
+ - 1.0.1 : updates - ios fix for app.config location
14
14
- 0.4.1: .Net Standard Update
15
15
- 0.3.3: PortableStream.Current now can be use in PCL project.
16
16
- 0.3.2: Update to latest dependencies, Update Doc
You can’t perform that action at this time.
0 commit comments