Skip to content

Commit 76b9cd2

Browse files
committed
Merge branch 'netstandart'
2 parents 4dbd4e6 + f98a148 commit 76b9cd2

File tree

158 files changed

+123
-387
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

158 files changed

+123
-387
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<Application
2-
x:Class="FB2Sample.UWP.App"
2+
x:Class="FB2Library.Sample.UWP.App"
33
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
44
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
5-
xmlns:local="using:FB2Sample.UWP"
5+
xmlns:local="using:FB2Library.Sample.UWP"
66
RequestedTheme="Light">
77

88
</Application>

demo/FB2Sample.UWP/App.xaml.cs renamed to FB2Library.Sample.UWP/App.xaml.cs

Lines changed: 11 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
using Windows.UI.Xaml.Media;
1616
using Windows.UI.Xaml.Navigation;
1717

18-
namespace FB2Sample.UWP
18+
namespace FB2Library.Sample.UWP
1919
{
2020
/// <summary>
2121
/// Provides application-specific behavior to supplement the default Application class.
@@ -39,14 +39,6 @@ public App()
3939
/// <param name="e">Details about the launch request and process.</param>
4040
protected override void OnLaunched(LaunchActivatedEventArgs e)
4141
{
42-
43-
#if DEBUG
44-
if (System.Diagnostics.Debugger.IsAttached)
45-
{
46-
this.DebugSettings.EnableFrameRateCounter = true;
47-
}
48-
#endif
49-
5042
Frame rootFrame = Window.Current.Content as Frame;
5143

5244
// Do not repeat app initialization when the Window already has content,
@@ -67,15 +59,18 @@ protected override void OnLaunched(LaunchActivatedEventArgs e)
6759
Window.Current.Content = rootFrame;
6860
}
6961

70-
if (rootFrame.Content == null)
62+
if (e.PrelaunchActivated == false)
7163
{
72-
// When the navigation stack isn't restored navigate to the first page,
73-
// configuring the new page by passing required information as a navigation
74-
// parameter
75-
rootFrame.Navigate(typeof(MainPage), e.Arguments);
64+
if (rootFrame.Content == null)
65+
{
66+
// When the navigation stack isn't restored navigate to the first page,
67+
// configuring the new page by passing required information as a navigation
68+
// parameter
69+
rootFrame.Navigate(typeof(MainPage), e.Arguments);
70+
}
71+
// Ensure the current window is active
72+
Window.Current.Activate();
7673
}
77-
// Ensure the current window is active
78-
Window.Current.Activate();
7974
}
8075

8176
/// <summary>

demo/FB2Sample.UWP/FB2Sample.UWP.csproj renamed to FB2Library.Sample.UWP/FB2Library.Sample.UWP.csproj

Lines changed: 18 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,23 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2+
<Project ToolsVersion="15.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
44
<PropertyGroup>
55
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
66
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
7-
<ProjectGuid>{4A6A3054-2DA2-49E5-9556-C7F529414FB9}</ProjectGuid>
7+
<ProjectGuid>{9E25F85E-486A-4B68-AF44-3E47CA962433}</ProjectGuid>
88
<OutputType>AppContainerExe</OutputType>
99
<AppDesignerFolder>Properties</AppDesignerFolder>
10-
<RootNamespace>FB2Sample.UWP</RootNamespace>
11-
<AssemblyName>FB2Sample.UWP</AssemblyName>
10+
<RootNamespace>FB2Library.Sample.UWP</RootNamespace>
11+
<AssemblyName>FB2Library.Sample.UWP</AssemblyName>
1212
<DefaultLanguage>en-US</DefaultLanguage>
1313
<TargetPlatformIdentifier>UAP</TargetPlatformIdentifier>
14-
<TargetPlatformVersion>10.0.10586.0</TargetPlatformVersion>
15-
<TargetPlatformMinVersion>10.0.10240.0</TargetPlatformMinVersion>
14+
<TargetPlatformVersion Condition=" '$(TargetPlatformVersion)' == '' ">10.0.15063.0</TargetPlatformVersion>
15+
<TargetPlatformMinVersion>10.0.10586.0</TargetPlatformMinVersion>
1616
<MinimumVisualStudioVersion>14</MinimumVisualStudioVersion>
1717
<FileAlignment>512</FileAlignment>
1818
<ProjectTypeGuids>{A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
19-
<PackageCertificateKeyFile>FB2Sample.UWP_TemporaryKey.pfx</PackageCertificateKeyFile>
19+
<WindowsXamlEnableOverview>true</WindowsXamlEnableOverview>
20+
<PackageCertificateKeyFile>FB2Library.Sample.UWP_TemporaryKey.pfx</PackageCertificateKeyFile>
2021
</PropertyGroup>
2122
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
2223
<DebugSymbols>true</DebugSymbols>
@@ -87,10 +88,9 @@
8788
<Prefer32Bit>true</Prefer32Bit>
8889
<UseDotNetNativeToolchain>true</UseDotNetNativeToolchain>
8990
</PropertyGroup>
90-
<ItemGroup>
91-
<!-- A reference to the entire .Net Framework and Windows SDK are automatically included -->
92-
<None Include="project.json" />
93-
</ItemGroup>
91+
<PropertyGroup>
92+
<RestoreProjectStyle>PackageReference</RestoreProjectStyle>
93+
</PropertyGroup>
9494
<ItemGroup>
9595
<Compile Include="App.xaml.cs">
9696
<DependentUpon>App.xaml</DependentUpon>
@@ -104,7 +104,7 @@
104104
<AppxManifest Include="Package.appxmanifest">
105105
<SubType>Designer</SubType>
106106
</AppxManifest>
107-
<None Include="FB2Sample.UWP_TemporaryKey.pfx" />
107+
<None Include="FB2Library.Sample.UWP_TemporaryKey.pfx" />
108108
</ItemGroup>
109109
<ItemGroup>
110110
<Content Include="Properties\Default.rd.xml" />
@@ -127,7 +127,12 @@
127127
</Page>
128128
</ItemGroup>
129129
<ItemGroup>
130-
<ProjectReference Include="..\..\src\FB2Library\FB2Library.csproj">
130+
<PackageReference Include="Microsoft.NETCore.UniversalWindowsPlatform">
131+
<Version>5.2.3</Version>
132+
</PackageReference>
133+
</ItemGroup>
134+
<ItemGroup>
135+
<ProjectReference Include="..\FB2Library\FB2Library.csproj">
131136
<Project>{718ce136-bcdc-4bf8-9863-adc7633eb2ca}</Project>
132137
<Name>FB2Library</Name>
133138
</ProjectReference>

demo/FB2Sample.UWP/MainPage.xaml renamed to FB2Library.Sample.UWP/MainPage.xaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<Page
2-
x:Class="FB2Sample.UWP.MainPage"
2+
x:Class="FB2Library.Sample.UWP.MainPage"
33
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
44
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
5-
xmlns:local="using:FB2Sample.UWP"
5+
xmlns:local="using:FB2Library.Sample.UWP"
66
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
77
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
88
mc:Ignorable="d">
99

10-
<Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
10+
<Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
1111
<Grid.ColumnDefinitions>
1212
<ColumnDefinition Width="*" />
1313
<ColumnDefinition Width="200" />
@@ -16,9 +16,9 @@
1616
<ScrollViewer Grid.Column="0">
1717
<StackPanel x:Name="bookContent" />
1818
</ScrollViewer>
19-
19+
2020
<StackPanel Grid.Column="1" VerticalAlignment="Center" HorizontalAlignment="Center">
21-
21+
2222
<Button Content="Choose fb2 file..." Click="Choose_Click"/>
2323
<Button Content="Close file" Click="Close_Click" />
2424

demo/FB2Sample.UWP/MainPage.xaml.cs renamed to FB2Library.Sample.UWP/MainPage.xaml.cs

Lines changed: 11 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,21 @@
11
using System;
2-
using System.IO;
3-
using System.Threading.Tasks;
4-
using System.Collections.Generic;
52
using System.Diagnostics;
3+
using System.IO;
64
using System.Text;
5+
using System.Threading.Tasks;
76
using System.Xml;
8-
using System.Xml.Linq;
7+
using Windows.Storage;
98
using Windows.Storage.Pickers;
109
using Windows.UI.Xaml;
1110
using Windows.UI.Xaml.Controls;
12-
using Windows.Storage;
13-
using FB2Library;
14-
using Windows.UI.Text;
1511

16-
namespace FB2Sample.UWP
12+
// The Blank Page item template is documented at https://go.microsoft.com/fwlink/?LinkId=402352&clcid=0x409
13+
14+
namespace FB2Library.Sample.UWP
1715
{
16+
/// <summary>
17+
/// An empty page that can be used on its own or navigated to within a Frame.
18+
/// </summary>
1819
public sealed partial class MainPage : Page
1920
{
2021
private FB2File _file;
@@ -123,42 +124,13 @@ private async Task<string> GetStringFromStreamAsync(Stream stream)
123124
return xml;
124125
}
125126

126-
127-
128-
//private void DisplayLines()
129-
//{
130-
// foreach (var line in _lines)
131-
// {
132-
// if (line is HeaderLine)
133-
// {
134-
// bookContent.Children.Add(new TextBlock
135-
// {
136-
// FontWeight = new FontWeight { Weight = 700 },
137-
// Text = ((HeaderLine)line).Text
138-
// });
139-
// }
140-
// else if (line is TextLine)
141-
// {
142-
// bookContent.Children.Add(new TextBlock { Text = ((TextLine)line).Text });
143-
// }
144-
// else if (line is ImageLine)
145-
// {
146-
// var image = ((ImageLine)line);
147-
// bookContent.Children.Add(new Image { Width = 100, Height = 100 });
148-
// }
149-
// }
150-
//}
151-
152-
153-
154-
155127
private void Close_Click(object sender, RoutedEventArgs e)
156128
{
157129
bookInfo.Text = string.Empty;
158130
textBlock.Text = "Closed";
159131
_file = null;
160-
//_lines = null;
161-
bookContent.Children.Clear();
132+
133+
GC.Collect();
162134
}
163135
}
164136
}

demo/FB2Sample.UWP/Package.appxmanifest renamed to FB2Library.Sample.UWP/Package.appxmanifest

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
IgnorableNamespaces="uap mp">
88

99
<Identity
10-
Name="33eecefb-a10d-45cc-8168-726bfbe25545"
10+
Name="3b0e90e9-9a3b-4a57-93d9-58e543bd5412"
1111
Publisher="CN=yauhe"
1212
Version="1.0.0.0" />
1313

14-
<mp:PhoneIdentity PhoneProductId="33eecefb-a10d-45cc-8168-726bfbe25545" PhonePublisherId="00000000-0000-0000-0000-000000000000"/>
14+
<mp:PhoneIdentity PhoneProductId="3b0e90e9-9a3b-4a57-93d9-58e543bd5412" PhonePublisherId="00000000-0000-0000-0000-000000000000"/>
1515

1616
<Properties>
17-
<DisplayName>FB2Sample.UWP</DisplayName>
17+
<DisplayName>FB2Library.Sample.UWP</DisplayName>
1818
<PublisherDisplayName>yauhe</PublisherDisplayName>
1919
<Logo>Assets\StoreLogo.png</Logo>
2020
</Properties>
@@ -30,12 +30,12 @@
3030
<Applications>
3131
<Application Id="App"
3232
Executable="$targetnametoken$.exe"
33-
EntryPoint="FB2Sample.UWP.App">
33+
EntryPoint="FB2Library.Sample.UWP.App">
3434
<uap:VisualElements
35-
DisplayName="FB2Sample.UWP"
35+
DisplayName="FB2Library.Sample.UWP"
3636
Square150x150Logo="Assets\Square150x150Logo.png"
3737
Square44x44Logo="Assets\Square44x44Logo.png"
38-
Description="FB2Sample.UWP"
38+
Description="FB2Library.Sample.UWP"
3939
BackgroundColor="transparent">
4040
<uap:DefaultTile Wide310x150Logo="Assets\Wide310x150Logo.png"/>
4141
<uap:SplashScreen Image="Assets\SplashScreen.png" />

demo/FB2Sample.UWP/Properties/AssemblyInfo.cs renamed to FB2Library.Sample.UWP/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
// General Information about an assembly is controlled through the following
66
// set of attributes. Change these attribute values to modify the information
77
// associated with an assembly.
8-
[assembly: AssemblyTitle("FB2Sample.UWP")]
8+
[assembly: AssemblyTitle("FB2Library.Sample.UWP")]
99
[assembly: AssemblyDescription("")]
1010
[assembly: AssemblyConfiguration("")]
1111
[assembly: AssemblyCompany("")]
12-
[assembly: AssemblyProduct("FB2Sample.UWP")]
13-
[assembly: AssemblyCopyright("Copyright © 2016")]
12+
[assembly: AssemblyProduct("FB2Library.Sample.UWP")]
13+
[assembly: AssemblyCopyright("Copyright © 2017")]
1414
[assembly: AssemblyTrademark("")]
1515
[assembly: AssemblyCulture("")]
1616

demo/FB2Sample.XF/FB2Sample.XF.UWP/Properties/Default.rd.xml renamed to FB2Library.Sample.UWP/Properties/Default.rd.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
developers. However, you can modify these parameters to modify the behavior of the .NET Native
44
optimizer.
55
6-
Runtime Directives are documented at http://go.microsoft.com/fwlink/?LinkID=391919
6+
Runtime Directives are documented at https://go.microsoft.com/fwlink/?LinkID=391919
77
88
To fully enable reflection for App1.MyClass and all of its public/private members
99
<Type Name="App1.MyClass" Dynamic="Required All"/>

demo/FB2Sample.sln renamed to FB2Library.sln

Lines changed: 26 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio 14
4-
VisualStudioVersion = 14.0.25123.0
3+
# Visual Studio 15
4+
VisualStudioVersion = 15.0.26430.14
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FB2Sample.UWP", "FB2Sample.UWP\FB2Sample.UWP.csproj", "{4A6A3054-2DA2-49E5-9556-C7F529414FB9}"
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FB2Library", "FB2Library\FB2Library.csproj", "{718CE136-BCDC-4BF8-9863-ADC7633EB2CA}"
77
EndProject
8-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FB2Library", "..\src\FB2Library\FB2Library.csproj", "{718CE136-BCDC-4BF8-9863-ADC7633EB2CA}"
8+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FB2Library.Sample.UWP", "FB2Library.Sample.UWP\FB2Library.Sample.UWP.csproj", "{9E25F85E-486A-4B68-AF44-3E47CA962433}"
99
EndProject
1010
Global
1111
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -19,30 +19,6 @@ Global
1919
Release|x86 = Release|x86
2020
EndGlobalSection
2121
GlobalSection(ProjectConfigurationPlatforms) = postSolution
22-
{4A6A3054-2DA2-49E5-9556-C7F529414FB9}.Debug|Any CPU.ActiveCfg = Debug|x86
23-
{4A6A3054-2DA2-49E5-9556-C7F529414FB9}.Debug|Any CPU.Build.0 = Debug|x86
24-
{4A6A3054-2DA2-49E5-9556-C7F529414FB9}.Debug|Any CPU.Deploy.0 = Debug|x86
25-
{4A6A3054-2DA2-49E5-9556-C7F529414FB9}.Debug|ARM.ActiveCfg = Debug|ARM
26-
{4A6A3054-2DA2-49E5-9556-C7F529414FB9}.Debug|ARM.Build.0 = Debug|ARM
27-
{4A6A3054-2DA2-49E5-9556-C7F529414FB9}.Debug|ARM.Deploy.0 = Debug|ARM
28-
{4A6A3054-2DA2-49E5-9556-C7F529414FB9}.Debug|x64.ActiveCfg = Debug|x64
29-
{4A6A3054-2DA2-49E5-9556-C7F529414FB9}.Debug|x64.Build.0 = Debug|x64
30-
{4A6A3054-2DA2-49E5-9556-C7F529414FB9}.Debug|x64.Deploy.0 = Debug|x64
31-
{4A6A3054-2DA2-49E5-9556-C7F529414FB9}.Debug|x86.ActiveCfg = Debug|x86
32-
{4A6A3054-2DA2-49E5-9556-C7F529414FB9}.Debug|x86.Build.0 = Debug|x86
33-
{4A6A3054-2DA2-49E5-9556-C7F529414FB9}.Debug|x86.Deploy.0 = Debug|x86
34-
{4A6A3054-2DA2-49E5-9556-C7F529414FB9}.Release|Any CPU.ActiveCfg = Release|x86
35-
{4A6A3054-2DA2-49E5-9556-C7F529414FB9}.Release|Any CPU.Build.0 = Release|x86
36-
{4A6A3054-2DA2-49E5-9556-C7F529414FB9}.Release|Any CPU.Deploy.0 = Release|x86
37-
{4A6A3054-2DA2-49E5-9556-C7F529414FB9}.Release|ARM.ActiveCfg = Release|ARM
38-
{4A6A3054-2DA2-49E5-9556-C7F529414FB9}.Release|ARM.Build.0 = Release|ARM
39-
{4A6A3054-2DA2-49E5-9556-C7F529414FB9}.Release|ARM.Deploy.0 = Release|ARM
40-
{4A6A3054-2DA2-49E5-9556-C7F529414FB9}.Release|x64.ActiveCfg = Release|x64
41-
{4A6A3054-2DA2-49E5-9556-C7F529414FB9}.Release|x64.Build.0 = Release|x64
42-
{4A6A3054-2DA2-49E5-9556-C7F529414FB9}.Release|x64.Deploy.0 = Release|x64
43-
{4A6A3054-2DA2-49E5-9556-C7F529414FB9}.Release|x86.ActiveCfg = Release|x86
44-
{4A6A3054-2DA2-49E5-9556-C7F529414FB9}.Release|x86.Build.0 = Release|x86
45-
{4A6A3054-2DA2-49E5-9556-C7F529414FB9}.Release|x86.Deploy.0 = Release|x86
4622
{718CE136-BCDC-4BF8-9863-ADC7633EB2CA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
4723
{718CE136-BCDC-4BF8-9863-ADC7633EB2CA}.Debug|Any CPU.Build.0 = Debug|Any CPU
4824
{718CE136-BCDC-4BF8-9863-ADC7633EB2CA}.Debug|ARM.ActiveCfg = Debug|Any CPU
@@ -59,6 +35,28 @@ Global
5935
{718CE136-BCDC-4BF8-9863-ADC7633EB2CA}.Release|x64.Build.0 = Release|Any CPU
6036
{718CE136-BCDC-4BF8-9863-ADC7633EB2CA}.Release|x86.ActiveCfg = Release|Any CPU
6137
{718CE136-BCDC-4BF8-9863-ADC7633EB2CA}.Release|x86.Build.0 = Release|Any CPU
38+
{9E25F85E-486A-4B68-AF44-3E47CA962433}.Debug|Any CPU.ActiveCfg = Debug|x86
39+
{9E25F85E-486A-4B68-AF44-3E47CA962433}.Debug|Any CPU.Build.0 = Debug|x86
40+
{9E25F85E-486A-4B68-AF44-3E47CA962433}.Debug|Any CPU.Deploy.0 = Debug|x86
41+
{9E25F85E-486A-4B68-AF44-3E47CA962433}.Debug|ARM.ActiveCfg = Debug|ARM
42+
{9E25F85E-486A-4B68-AF44-3E47CA962433}.Debug|ARM.Build.0 = Debug|ARM
43+
{9E25F85E-486A-4B68-AF44-3E47CA962433}.Debug|ARM.Deploy.0 = Debug|ARM
44+
{9E25F85E-486A-4B68-AF44-3E47CA962433}.Debug|x64.ActiveCfg = Debug|x64
45+
{9E25F85E-486A-4B68-AF44-3E47CA962433}.Debug|x64.Build.0 = Debug|x64
46+
{9E25F85E-486A-4B68-AF44-3E47CA962433}.Debug|x64.Deploy.0 = Debug|x64
47+
{9E25F85E-486A-4B68-AF44-3E47CA962433}.Debug|x86.ActiveCfg = Debug|x86
48+
{9E25F85E-486A-4B68-AF44-3E47CA962433}.Debug|x86.Build.0 = Debug|x86
49+
{9E25F85E-486A-4B68-AF44-3E47CA962433}.Debug|x86.Deploy.0 = Debug|x86
50+
{9E25F85E-486A-4B68-AF44-3E47CA962433}.Release|Any CPU.ActiveCfg = Release|x86
51+
{9E25F85E-486A-4B68-AF44-3E47CA962433}.Release|ARM.ActiveCfg = Release|ARM
52+
{9E25F85E-486A-4B68-AF44-3E47CA962433}.Release|ARM.Build.0 = Release|ARM
53+
{9E25F85E-486A-4B68-AF44-3E47CA962433}.Release|ARM.Deploy.0 = Release|ARM
54+
{9E25F85E-486A-4B68-AF44-3E47CA962433}.Release|x64.ActiveCfg = Release|x64
55+
{9E25F85E-486A-4B68-AF44-3E47CA962433}.Release|x64.Build.0 = Release|x64
56+
{9E25F85E-486A-4B68-AF44-3E47CA962433}.Release|x64.Deploy.0 = Release|x64
57+
{9E25F85E-486A-4B68-AF44-3E47CA962433}.Release|x86.ActiveCfg = Release|x86
58+
{9E25F85E-486A-4B68-AF44-3E47CA962433}.Release|x86.Build.0 = Release|x86
59+
{9E25F85E-486A-4B68-AF44-3E47CA962433}.Release|x86.Deploy.0 = Release|x86
6260
EndGlobalSection
6361
GlobalSection(SolutionProperties) = preSolution
6462
HideSolutionNode = FALSE
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

FB2Library/FB2Library.csproj

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project Sdk="Microsoft.NET.Sdk">
3+
4+
<PropertyGroup>
5+
<TargetFramework>netstandard1.0</TargetFramework>
6+
<Version>1.3</Version>
7+
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
8+
<Authors>lordkiron, Yauheni Pakala</Authors>
9+
<PackageLicenseUrl>https://github.com/wcoder/FB2Library/blob/master/LICENSE.md</PackageLicenseUrl>
10+
<PackageProjectUrl>https://github.com/wcoder/FB2Library</PackageProjectUrl>
11+
<PackageIconUrl>https://raw.githubusercontent.com/wcoder/FB2Library/master/nuget/icon.png</PackageIconUrl>
12+
<RepositoryUrl>https://github.com/wcoder/FB2Library</RepositoryUrl>
13+
<RepositoryType>git</RepositoryType>
14+
<PackageTags>netstandard, pcl, fb2, ebook, windows, uwp, android, ios, linux, macos, xamarin, xamarin.forms</PackageTags>
15+
<PackageReleaseNotes>v.1.3 - Ported to .Net Standard Library
16+
v.1.2.1 - Merge pull request from g0rdan/master https://github.com/wcoder/FB2Library/pull/3
17+
v.1.2 - Added class-reader.
18+
v.1.1 - Ported to PCL.</PackageReleaseNotes>
19+
<Description>Cross-Platform .NET library for read .FB2 ebook files This ebook files format is widely acceptable in Russia. If you doing some converter, reader or editor for ebooks and you using one of the .Net languages - this project for you.</Description>
20+
<Product></Product>
21+
<PackageTitle>Cross-Platform .NET library for read .FB2 ebook files</PackageTitle>
22+
<Company />
23+
<Copyright>Copyright (c) 2009-2015 lordkiron / 2016 Yauheni Pakala</Copyright>
24+
<AssemblyVersion>1.2.1.0</AssemblyVersion>
25+
<FileVersion>1.2.1.0</FileVersion>
26+
</PropertyGroup>
27+
</Project>

0 commit comments

Comments
 (0)