mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-03 15:40:18 -04:00
WIP on data binding, nothing is working...
This commit is contained in:
Binary file not shown.
@@ -1,8 +1,9 @@
|
||||
using ModernKeePass.Pages;
|
||||
using System;
|
||||
using System;
|
||||
using Windows.UI.Xaml.Controls;
|
||||
using Windows.UI.Xaml.Input;
|
||||
|
||||
using ModernKeePass.Pages;
|
||||
|
||||
// The Blank Page item template is documented at http://go.microsoft.com/fwlink/?LinkId=234238
|
||||
|
||||
namespace ModernKeePass
|
||||
@@ -30,7 +31,7 @@ namespace ModernKeePass
|
||||
{
|
||||
// Application now has read/write access to the picked file
|
||||
textBlock.Text = "Opened database: " + file.Name;
|
||||
Frame.Navigate(typeof(DatabaseViewPage), file);
|
||||
Frame.Navigate(typeof(DatabaseDetailPage), file);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@@ -114,10 +114,13 @@
|
||||
<Compile Include="MainPage.xaml.cs">
|
||||
<DependentUpon>MainPage.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Pages\DatabaseViewPage.xaml.cs">
|
||||
<DependentUpon>DatabaseViewPage.xaml</DependentUpon>
|
||||
<Compile Include="Pages\DatabaseDetailPage.xaml.cs">
|
||||
<DependentUpon>DatabaseDetailPage.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<Compile Include="ViewModels\DatabaseVm.cs" />
|
||||
<Compile Include="ViewModels\EntryVm.cs" />
|
||||
<Compile Include="ViewModels\GroupVm.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<AppxManifest Include="Package.appxmanifest">
|
||||
@@ -141,14 +144,14 @@
|
||||
<Generator>MSBuild:Compile</Generator>
|
||||
<SubType>Designer</SubType>
|
||||
</Page>
|
||||
<Page Include="Pages\DatabaseViewPage.xaml">
|
||||
<Page Include="Pages\DatabaseDetailPage.xaml">
|
||||
<SubType>Designer</SubType>
|
||||
<Generator>MSBuild:Compile</Generator>
|
||||
</Page>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="ModernKeePassLib, Version=2.19.0.27133, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\ModernKeePassLib.2.19.0.27133\lib\netstandard1.2\ModernKeePassLib.dll</HintPath>
|
||||
<Reference Include="ModernKeePassLib, Version=2.19.0.26202, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\ModernKeePassLib.2.19.0.26202\lib\netstandard1.2\ModernKeePassLib.dll</HintPath>
|
||||
<Private>True</Private>
|
||||
</Reference>
|
||||
<Reference Include="System.Runtime.InteropServices.RuntimeInformation, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
|
||||
@@ -156,9 +159,7 @@
|
||||
<Private>True</Private>
|
||||
</Reference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Folder Include="Interfaces\" />
|
||||
</ItemGroup>
|
||||
<ItemGroup />
|
||||
<PropertyGroup Condition=" '$(VisualStudioVersion)' == '' or '$(VisualStudioVersion)' < '12.0' ">
|
||||
<VisualStudioVersion>12.0</VisualStudioVersion>
|
||||
</PropertyGroup>
|
||||
|
@@ -1,38 +1,32 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Package xmlns="http://schemas.microsoft.com/appx/2010/manifest" xmlns:m2="http://schemas.microsoft.com/appx/2013/manifest">
|
||||
|
||||
<Identity Name="204cf947-89ad-4b37-83cd-19a477e2f961"
|
||||
Publisher="CN=GBE"
|
||||
Version="1.0.0.0" />
|
||||
|
||||
<Identity Name="204cf947-89ad-4b37-83cd-19a477e2f961" Publisher="CN=GBE" Version="1.0.0.0" />
|
||||
<Properties>
|
||||
<DisplayName>ModernKeePass</DisplayName>
|
||||
<PublisherDisplayName>GBE</PublisherDisplayName>
|
||||
<PublisherDisplayName>Wismna</PublisherDisplayName>
|
||||
<Logo>Assets\StoreLogo.png</Logo>
|
||||
</Properties>
|
||||
|
||||
<Prerequisites>
|
||||
<OSMinVersion>6.3.0</OSMinVersion>
|
||||
<OSMaxVersionTested>6.3.0</OSMaxVersionTested>
|
||||
</Prerequisites>
|
||||
|
||||
<Resources>
|
||||
<Resource Language="x-generate"/>
|
||||
<Resource Language="x-generate" />
|
||||
</Resources>
|
||||
|
||||
<Applications>
|
||||
<Application Id="App"
|
||||
Executable="$targetnametoken$.exe"
|
||||
EntryPoint="ModernKeePass.App">
|
||||
<m2:VisualElements
|
||||
DisplayName="ModernKeePass"
|
||||
Square150x150Logo="Assets\Logo.png"
|
||||
Square30x30Logo="Assets\SmallLogo.png"
|
||||
Description="ModernKeePass"
|
||||
ForegroundText="light"
|
||||
BackgroundColor="#464646">
|
||||
<m2:SplashScreen Image="Assets\SplashScreen.png" />
|
||||
</m2:VisualElements>
|
||||
<Application Id="App" Executable="$targetnametoken$.exe" EntryPoint="ModernKeePass.App">
|
||||
<m2:VisualElements DisplayName="ModernKeePass" Square150x150Logo="Assets\Logo.png" Square30x30Logo="Assets\SmallLogo.png" Description="ModernKeePass" ForegroundText="light" BackgroundColor="#464646" ToastCapable="true">
|
||||
<m2:SplashScreen Image="Assets\SplashScreen.png" />
|
||||
</m2:VisualElements>
|
||||
<Extensions>
|
||||
<Extension Category="windows.fileOpenPicker">
|
||||
<FileOpenPicker>
|
||||
<SupportedFileTypes>
|
||||
<FileType>.kdbx</FileType>
|
||||
</SupportedFileTypes>
|
||||
</FileOpenPicker>
|
||||
</Extension>
|
||||
</Extensions>
|
||||
</Application>
|
||||
</Applications>
|
||||
<Capabilities>
|
||||
|
99
ModernKeePass/Pages/DatabaseDetailPage.xaml
Normal file
99
ModernKeePass/Pages/DatabaseDetailPage.xaml
Normal file
@@ -0,0 +1,99 @@
|
||||
<Page
|
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:local="using:ModernKeePass.Pages"
|
||||
xmlns:common="using:ModernKeePass.Common"
|
||||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||
xmlns:ViewModels="using:ModernKeePass.ViewModels"
|
||||
x:Name="pageRoot"
|
||||
x:Class="ModernKeePass.Pages.DatabaseDetailPage"
|
||||
DataContext="{Binding ViewModel, RelativeSource={RelativeSource Self}}"
|
||||
mc:Ignorable="d">
|
||||
<!--<Page.DataContext>
|
||||
<ViewModels:DatabaseVm />
|
||||
</Page.DataContext>-->
|
||||
<Page.Resources>
|
||||
<!-- Collection of items displayed by this page -->
|
||||
<CollectionViewSource
|
||||
x:Name="itemsViewSource"
|
||||
Source="{Binding Groups}"/>
|
||||
</Page.Resources>
|
||||
|
||||
<Grid>
|
||||
<Grid.DataContext>
|
||||
<ViewModels:DatabaseVm/>
|
||||
</Grid.DataContext>
|
||||
<Grid.ChildrenTransitions>
|
||||
<TransitionCollection>
|
||||
<EntranceThemeTransition/>
|
||||
</TransitionCollection>
|
||||
</Grid.ChildrenTransitions>
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition Height="140"/>
|
||||
<RowDefinition Height="*"/>
|
||||
</Grid.RowDefinitions>
|
||||
|
||||
<!-- Horizontal scrolling grid -->
|
||||
<GridView
|
||||
x:Name="itemGridView"
|
||||
AutomationProperties.AutomationId="ItemGridView"
|
||||
AutomationProperties.Name="Groups"
|
||||
TabIndex="1"
|
||||
Grid.RowSpan="2"
|
||||
Padding="120,126,120,50"
|
||||
ItemsSource="{Binding Source={StaticResource itemsViewSource}}"
|
||||
SelectionMode="None"
|
||||
IsSwipeEnabled="false">
|
||||
<GridView.ItemTemplate>
|
||||
<DataTemplate>
|
||||
<Grid Height="110" Width="480" Margin="10">
|
||||
<Grid.DataContext>
|
||||
<ViewModels:GroupVm/>
|
||||
</Grid.DataContext>
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition Width="Auto"/>
|
||||
<ColumnDefinition Width="*"/>
|
||||
</Grid.ColumnDefinitions>
|
||||
<Border Background="{ThemeResource ListViewItemPlaceholderBackgroundThemeBrush}" Width="110" Height="110">
|
||||
<Image Stretch="UniformToFill" AutomationProperties.Name="{Binding Title}"/>
|
||||
</Border>
|
||||
<StackPanel Grid.Column="1" VerticalAlignment="Top" Margin="10,0,0,0">
|
||||
<TextBlock Style="{StaticResource TitleTextBlockStyle}" TextWrapping="NoWrap" Text="{Binding Name}"/>
|
||||
<TextBlock Style="{StaticResource CaptionTextBlockStyle}" TextWrapping="NoWrap"/>
|
||||
<TextBlock Style="{StaticResource BodyTextBlockStyle}" MaxHeight="60"/>
|
||||
</StackPanel>
|
||||
</Grid>
|
||||
</DataTemplate>
|
||||
</GridView.ItemTemplate>
|
||||
<GridView.Header>
|
||||
<StackPanel Width="480" Margin="0,4,14,0">
|
||||
<TextBlock Margin="0,0,0,20" Style="{StaticResource SubheaderTextBlockStyle}" MaxHeight="60"/>
|
||||
<Image Height="400" Margin="0,0,0,20" Stretch="UniformToFill" AutomationProperties.Name="{Binding Title}"/>
|
||||
<TextBlock Margin="0,0,0,0" Style="{StaticResource BodyTextBlockStyle}"/>
|
||||
</StackPanel>
|
||||
</GridView.Header>
|
||||
<GridView.ItemContainerStyle>
|
||||
<Style TargetType="FrameworkElement">
|
||||
<Setter Property="Margin" Value="52,0,0,2"/>
|
||||
</Style>
|
||||
</GridView.ItemContainerStyle>
|
||||
</GridView>
|
||||
|
||||
<!-- Back button and page title -->
|
||||
<Grid>
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition Width="120"/>
|
||||
<ColumnDefinition Width="*"/>
|
||||
</Grid.ColumnDefinitions>
|
||||
<Button x:Name="backButton" Margin="39,59,39,0" Command="{Binding NavigationHelper.GoBackCommand, ElementName=pageRoot}"
|
||||
Style="{StaticResource NavigationBackButtonNormalStyle}"
|
||||
VerticalAlignment="Top"
|
||||
AutomationProperties.Name="Back"
|
||||
AutomationProperties.AutomationId="BackButton"
|
||||
AutomationProperties.ItemType="Navigation Button"/>
|
||||
<TextBlock x:Name="pageTitle" Text="{Binding Name}" Style="{StaticResource HeaderTextBlockStyle}" Grid.Column="1"
|
||||
IsHitTestVisible="false" TextWrapping="NoWrap" VerticalAlignment="Bottom" Margin="0,0,30,40"/>
|
||||
</Grid>
|
||||
</Grid>
|
||||
</Page>
|
@@ -1,33 +1,25 @@
|
||||
using ModernKeePass.Common;
|
||||
using ModernKeePassLib;
|
||||
using ModernKeePassLib.Interfaces;
|
||||
using ModernKeePassLib.Keys;
|
||||
using ModernKeePassLib.Serialization;
|
||||
using Windows.Storage;
|
||||
using Windows.UI.Xaml.Controls;
|
||||
using Windows.UI.Xaml.Navigation;
|
||||
using System.Linq;
|
||||
using System;
|
||||
using ModernKeePass.ViewModels;
|
||||
using Windows.Storage;
|
||||
|
||||
// The Hub Page item template is documented at http://go.microsoft.com/fwlink/?LinkId=321224
|
||||
// The Group Detail Page item template is documented at http://go.microsoft.com/fwlink/?LinkId=234229
|
||||
|
||||
namespace ModernKeePass.Pages
|
||||
{
|
||||
/// <summary>
|
||||
/// A page that displays a grouped collection of items.
|
||||
/// A page that displays an overview of a single group, including a preview of the items
|
||||
/// within the group.
|
||||
/// </summary>
|
||||
public sealed partial class DatabaseViewPage : Page
|
||||
public sealed partial class DatabaseDetailPage : Page
|
||||
{
|
||||
private NavigationHelper navigationHelper;
|
||||
private ObservableDictionary defaultViewModel = new ObservableDictionary();
|
||||
private PwDatabase _database = new PwDatabase();
|
||||
private DatabaseVm viewModel = new DatabaseVm();
|
||||
|
||||
/// <summary>
|
||||
/// This can be changed to a strongly typed view model.
|
||||
/// </summary>
|
||||
public ObservableDictionary DefaultViewModel
|
||||
public DatabaseVm ViewModel
|
||||
{
|
||||
get { return this.defaultViewModel; }
|
||||
get { return this.viewModel; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
@@ -39,14 +31,14 @@ namespace ModernKeePass.Pages
|
||||
get { return this.navigationHelper; }
|
||||
}
|
||||
|
||||
public DatabaseViewPage()
|
||||
|
||||
public DatabaseDetailPage()
|
||||
{
|
||||
this.InitializeComponent();
|
||||
this.navigationHelper = new NavigationHelper(this);
|
||||
this.navigationHelper.LoadState += navigationHelper_LoadState;
|
||||
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// Populates the page with content passed during navigation. Any saved state is also
|
||||
/// provided when recreating a page from a prior session.
|
||||
@@ -60,7 +52,8 @@ namespace ModernKeePass.Pages
|
||||
/// session. The state will be null the first time a page is visited.</param>
|
||||
private void navigationHelper_LoadState(object sender, LoadStateEventArgs e)
|
||||
{
|
||||
// TODO: Assign a collection of bindable groups to this.DefaultViewModel["Groups"]
|
||||
// TODO: Assign a bindable group to this.DefaultViewModel["Group"]
|
||||
// TODO: Assign a collection of bindable items to this.DefaultViewModel["Items"]
|
||||
}
|
||||
|
||||
#region NavigationHelper registration
|
||||
@@ -77,21 +70,11 @@ namespace ModernKeePass.Pages
|
||||
protected override void OnNavigatedTo(NavigationEventArgs e)
|
||||
{
|
||||
navigationHelper.OnNavigatedTo(e);
|
||||
|
||||
if (e.Parameter is StorageFile)
|
||||
{
|
||||
var file = e.Parameter as StorageFile;
|
||||
var key = new CompositeKey();
|
||||
key.AddUserKey(new KcpPassword("test"));
|
||||
try
|
||||
{
|
||||
_database.Open(IOConnectionInfo.FromPath(file.Path), key, new NullStatusLogger());
|
||||
|
||||
DefaultViewModel["Groups"] = _database.RootGroup.GetGroups(false).Select(g => g.Name);
|
||||
}
|
||||
finally
|
||||
{
|
||||
_database.Close();
|
||||
}
|
||||
viewModel.Open(file, "test");
|
||||
}
|
||||
}
|
||||
|
@@ -1,127 +0,0 @@
|
||||
<Page
|
||||
x:Name="pageRoot"
|
||||
x:Class="ModernKeePass.Pages.DatabaseViewPage"
|
||||
DataContext="{Binding DefaultViewModel, RelativeSource={RelativeSource Self}}"
|
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:local="using:ModernKeePass.Pages"
|
||||
xmlns:common="using:ModernKeePass.Common"
|
||||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||
mc:Ignorable="d">
|
||||
|
||||
<Page.Resources>
|
||||
<x:String x:Key="ChevronGlyph"></x:String>
|
||||
|
||||
<!-- TODO: Delete this line if the key AppName is declared in App.xaml -->
|
||||
<x:String x:Key="AppName">My Application</x:String>
|
||||
|
||||
</Page.Resources>
|
||||
|
||||
<!--
|
||||
This grid acts as a root panel for the page.
|
||||
-->
|
||||
<Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
|
||||
<Grid.ChildrenTransitions>
|
||||
<TransitionCollection>
|
||||
<EntranceThemeTransition/>
|
||||
</TransitionCollection>
|
||||
</Grid.ChildrenTransitions>
|
||||
|
||||
<Hub>
|
||||
<Hub.Header>
|
||||
<!-- Back button and page title -->
|
||||
<Grid>
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition Width="80"/>
|
||||
<ColumnDefinition Width="*"/>
|
||||
</Grid.ColumnDefinitions>
|
||||
<Button x:Name="backButton" Margin="-1,-1,39,0" Command="{Binding NavigationHelper.GoBackCommand, ElementName=pageRoot}"
|
||||
Style="{StaticResource NavigationBackButtonNormalStyle}"
|
||||
VerticalAlignment="Top"
|
||||
AutomationProperties.Name="Back"
|
||||
AutomationProperties.AutomationId="BackButton"
|
||||
AutomationProperties.ItemType="Navigation Button"/>
|
||||
<TextBlock x:Name="pageTitle" Text="{StaticResource AppName}" Style="{StaticResource HeaderTextBlockStyle}" Grid.Column="1"
|
||||
IsHitTestVisible="false" TextWrapping="NoWrap" VerticalAlignment="Top"/>
|
||||
</Grid>
|
||||
</Hub.Header>
|
||||
|
||||
<HubSection Width="780" Margin="0,0,80,0">
|
||||
<HubSection.Background>
|
||||
<ImageBrush Stretch="UniformToFill" />
|
||||
</HubSection.Background>
|
||||
</HubSection>
|
||||
<HubSection Width="500" Header="Section 1">
|
||||
<DataTemplate>
|
||||
<Grid>
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition Height="Auto" />
|
||||
<RowDefinition Height="Auto" />
|
||||
<RowDefinition Height="Auto" />
|
||||
<RowDefinition Height="*" />
|
||||
</Grid.RowDefinitions>
|
||||
<Image Stretch="Fill" Width="420" Height="280"/>
|
||||
<TextBlock Style="{StaticResource SubheaderTextBlockStyle}" Grid.Row="1" Margin="0,10,0,0" TextWrapping="Wrap"
|
||||
Text="Lorem ipsum dolor sit nonumy sed consectetuer ising elit, sed diam"/>
|
||||
<TextBlock Style="{StaticResource TitleTextBlockStyle}" Grid.Row="2" Margin="0,10,0,0"
|
||||
Text="Description text:"/>
|
||||
<TextBlock Style="{StaticResource BodyTextBlockStyle}" Grid.Row="3"
|
||||
Text="Lorem ipsum dolor sit amet, consectetuer ising elit, sed diam nonummy nibh uismod tincidunt ut laoreet suscipit lobortis ni ut wisi quipexerci quis consequat minim veniam, quis nostrud exerci tation ullam corper. Lorem ipsum dolor sit amet, consectetuer ising elit, sed diam nonummy nibh uismod tincidunt ut laoreet suscipit lobortis ni ut wisi quipexerci quis consequat minim veniam, quis nostrud exerci tation ullam corper. "/>
|
||||
</Grid>
|
||||
</DataTemplate>
|
||||
</HubSection>
|
||||
<HubSection Width="520" Header="Section 2">
|
||||
<DataTemplate>
|
||||
<Grid>
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition Height="Auto" />
|
||||
<RowDefinition Height="Auto" />
|
||||
<RowDefinition Height="Auto" />
|
||||
<RowDefinition Height="*" />
|
||||
</Grid.RowDefinitions>
|
||||
<TextBlock Style="{StaticResource TitleTextBlockStyle}" Margin="0,0,0,10"
|
||||
Text="Item Title" />
|
||||
<TextBlock Style="{StaticResource SubheaderTextBlockStyle}" Grid.Row="1"
|
||||
Text="Quisque in porta lorem dolor amet sed consectetuer ising elit, sed diam non my nibh uis mod wisi quip."/>
|
||||
<TextBlock Style="{StaticResource SubtitleTextBlockStyle}" Grid.Row="2" Margin="0,20,0,0"
|
||||
Text="Item Sub Title"/>
|
||||
<TextBlock Style="{StaticResource BodyTextBlockStyle}" Grid.Row="3"
|
||||
Text="Lorem ipsum dolor sit amet, consectetuer ising elit, sed diam nonummy nibh uismod tincidunt ut laoreet suscipit lobortis ni ut wisi quipexerci quis consequat minim veniam, quis nostrud exerci tation ullam corper. Lorem ipsum dolor sit amet, consectetuer ising elit, sed diam nonummy nibh uismod tincidunt ut laoreet suscipit lobortis ni ut wisi quipexerci quis consequat minim veniam, quis nostrud exerci tation ullam corper."/>
|
||||
</Grid>
|
||||
</DataTemplate>
|
||||
</HubSection>
|
||||
|
||||
<HubSection Header="Section 3">
|
||||
<DataTemplate>
|
||||
<!-- width of 400 -->
|
||||
<StackPanel Orientation="Vertical">
|
||||
<Grid>
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition Width="130"/>
|
||||
<ColumnDefinition Width="5"/>
|
||||
<ColumnDefinition Width="130"/>
|
||||
<ColumnDefinition Width="5"/>
|
||||
<ColumnDefinition Width="130"/>
|
||||
</Grid.ColumnDefinitions>
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition Height="270"/>
|
||||
<RowDefinition Height="95"/>
|
||||
<RowDefinition Height="Auto" />
|
||||
<RowDefinition Height="*" />
|
||||
</Grid.RowDefinitions>
|
||||
<Image Grid.ColumnSpan="5" Stretch="Fill" Margin="0,0,0,10"/>
|
||||
<Image Grid.Row="1" Stretch="Fill"/>
|
||||
<Image Grid.Row="1" Grid.Column="2" Stretch="Fill"/>
|
||||
<Image Grid.Row="1" Grid.Column="4" Stretch="Fill"/>
|
||||
<TextBlock Style="{StaticResource TitleTextBlockStyle}" Grid.Row="2" Grid.ColumnSpan="5" Margin="0,15,0,0"
|
||||
Text="Description Text:"/>
|
||||
<TextBlock Style="{StaticResource BodyTextBlockStyle}" Grid.Row="3" Grid.ColumnSpan="5"
|
||||
Text="Lorem ipsum dolor sit amet, consectetuer ising elit, sed diam nonummy nibh uismod tincidunt ut laoreet suscipit lobortis ni ut wisi quipexerci quis consequat minim veniam, quis nostrud exerci tation ullam corper. Lorem ipsum dolor sit amet, consectetuer ising elit, sed diam nonummy nibh uismod tincidunt ut laoreet suscipit lobortis ni ut wisi quipexerci quis consequat minim veniam, quis nostrud exerci tation ullam corper."/>
|
||||
</Grid>
|
||||
</StackPanel>
|
||||
</DataTemplate>
|
||||
</HubSection>
|
||||
</Hub>
|
||||
</Grid>
|
||||
</Page>
|
37
ModernKeePass/ViewModels/DatabaseVm.cs
Normal file
37
ModernKeePass/ViewModels/DatabaseVm.cs
Normal file
@@ -0,0 +1,37 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Collections.ObjectModel;
|
||||
using System.Linq;
|
||||
using Windows.Storage;
|
||||
|
||||
using ModernKeePassLib;
|
||||
using ModernKeePassLib.Keys;
|
||||
using ModernKeePassLib.Serialization;
|
||||
using ModernKeePassLib.Interfaces;
|
||||
|
||||
namespace ModernKeePass.ViewModels
|
||||
{
|
||||
public class DatabaseVm
|
||||
{
|
||||
private PwDatabase _database = new PwDatabase();
|
||||
|
||||
public string Name { get; set; }
|
||||
public ObservableCollection<GroupVm> Groups { get; set; }
|
||||
|
||||
public async void Open(StorageFile databaseFile, string password)
|
||||
{
|
||||
var key = new CompositeKey();
|
||||
key.AddUserKey(new KcpPassword(password));
|
||||
try
|
||||
{
|
||||
await _database.Open(IOConnectionInfo.FromFile(databaseFile), key, new NullStatusLogger());
|
||||
if (!_database.IsOpen) return;
|
||||
Name = databaseFile.DisplayName;
|
||||
Groups = new ObservableCollection<GroupVm>(_database.RootGroup.Groups.Select(g => new GroupVm { Name = g.Name }));
|
||||
}
|
||||
finally
|
||||
{
|
||||
_database.Close();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
12
ModernKeePass/ViewModels/EntryVm.cs
Normal file
12
ModernKeePass/ViewModels/EntryVm.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace ModernKeePass.ViewModels
|
||||
{
|
||||
public class EntryVm
|
||||
{
|
||||
}
|
||||
}
|
14
ModernKeePass/ViewModels/GroupVm.cs
Normal file
14
ModernKeePass/ViewModels/GroupVm.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace ModernKeePass.ViewModels
|
||||
{
|
||||
public class GroupVm
|
||||
{
|
||||
public List<EntryVm> Entries { get; set; }
|
||||
public string Name { get; set; }
|
||||
}
|
||||
}
|
Binary file not shown.
@@ -1,7 +1,7 @@
|
||||
<XamlCompilerSaveState>
|
||||
<ReferenceAssemblyList>
|
||||
<LocalAssembly PathName="c:\users\gbe\source\repos\modernkeepass\modernkeepass\obj\debug\intermediatexaml\modernkeepass.exe" HashGuid="ba913411-8172-a080-2ef8-daa6762bdbba" />
|
||||
<ReferenceAssembly PathName="c:\users\gbe\source\repos\modernkeepass\packages\modernkeepasslib.2.19.0.27133\lib\netstandard1.2\modernkeepasslib.dll" HashGuid="d08e360b-ca16-7b19-6f2a-08b4fd9e8331" />
|
||||
<LocalAssembly PathName="c:\users\gbe\source\repos\modernkeepass\modernkeepass\obj\debug\intermediatexaml\modernkeepass.exe" HashGuid="76dc0cd8-3905-4d82-b50e-0e7de053066f" />
|
||||
<ReferenceAssembly PathName="c:\users\gbe\source\repos\modernkeepass\packages\modernkeepasslib.2.19.0.26202\lib\netstandard1.2\modernkeepasslib.dll" HashGuid="29b95f3b-9b53-5341-fc4d-d6dbb7ef4dbc" />
|
||||
<ReferenceAssembly PathName="c:\users\gbe\source\repos\modernkeepass\packages\system.runtime.interopservices.runtimeinformation.4.3.0\lib\win8\system.runtime.interopservices.runtimeinformation.dll" HashGuid="6560d00f-0bb0-0755-5423-c4e1bf779127" />
|
||||
</ReferenceAssemblyList>
|
||||
</XamlCompilerSaveState>
|
||||
|
@@ -1,614 +0,0 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
|
||||
|
||||
namespace ModernKeePass
|
||||
{
|
||||
public partial class App : global::Windows.UI.Xaml.Markup.IXamlMetadataProvider
|
||||
{
|
||||
private global::ModernKeePass.ModernKeePass_XamlTypeInfo.XamlTypeInfoProvider _provider;
|
||||
|
||||
public global::Windows.UI.Xaml.Markup.IXamlType GetXamlType(global::System.Type type)
|
||||
{
|
||||
if(_provider == null)
|
||||
{
|
||||
_provider = new global::ModernKeePass.ModernKeePass_XamlTypeInfo.XamlTypeInfoProvider();
|
||||
}
|
||||
return _provider.GetXamlTypeByType(type);
|
||||
}
|
||||
|
||||
public global::Windows.UI.Xaml.Markup.IXamlType GetXamlType(string fullName)
|
||||
{
|
||||
if(_provider == null)
|
||||
{
|
||||
_provider = new global::ModernKeePass.ModernKeePass_XamlTypeInfo.XamlTypeInfoProvider();
|
||||
}
|
||||
return _provider.GetXamlTypeByName(fullName);
|
||||
}
|
||||
|
||||
public global::Windows.UI.Xaml.Markup.XmlnsDefinition[] GetXmlnsDefinitions()
|
||||
{
|
||||
return new global::Windows.UI.Xaml.Markup.XmlnsDefinition[0];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
namespace ModernKeePass.ModernKeePass_XamlTypeInfo
|
||||
{
|
||||
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Windows.UI.Xaml.Build.Tasks", "4.0.0.0")]
|
||||
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
internal partial class XamlTypeInfoProvider
|
||||
{
|
||||
public global::Windows.UI.Xaml.Markup.IXamlType GetXamlTypeByType(global::System.Type type)
|
||||
{
|
||||
global::Windows.UI.Xaml.Markup.IXamlType xamlType;
|
||||
if (_xamlTypeCacheByType.TryGetValue(type, out xamlType))
|
||||
{
|
||||
return xamlType;
|
||||
}
|
||||
int typeIndex = LookupTypeIndexByType(type);
|
||||
if(typeIndex != -1)
|
||||
{
|
||||
xamlType = CreateXamlType(typeIndex);
|
||||
}
|
||||
if (xamlType != null)
|
||||
{
|
||||
_xamlTypeCacheByName.Add(xamlType.FullName, xamlType);
|
||||
_xamlTypeCacheByType.Add(xamlType.UnderlyingType, xamlType);
|
||||
}
|
||||
return xamlType;
|
||||
}
|
||||
|
||||
public global::Windows.UI.Xaml.Markup.IXamlType GetXamlTypeByName(string typeName)
|
||||
{
|
||||
if (string.IsNullOrEmpty(typeName))
|
||||
{
|
||||
return null;
|
||||
}
|
||||
global::Windows.UI.Xaml.Markup.IXamlType xamlType;
|
||||
if (_xamlTypeCacheByName.TryGetValue(typeName, out xamlType))
|
||||
{
|
||||
return xamlType;
|
||||
}
|
||||
int typeIndex = LookupTypeIndexByName(typeName);
|
||||
if(typeIndex != -1)
|
||||
{
|
||||
xamlType = CreateXamlType(typeIndex);
|
||||
}
|
||||
if (xamlType != null)
|
||||
{
|
||||
_xamlTypeCacheByName.Add(xamlType.FullName, xamlType);
|
||||
_xamlTypeCacheByType.Add(xamlType.UnderlyingType, xamlType);
|
||||
}
|
||||
return xamlType;
|
||||
}
|
||||
|
||||
public global::Windows.UI.Xaml.Markup.IXamlMember GetMemberByLongName(string longMemberName)
|
||||
{
|
||||
if (string.IsNullOrEmpty(longMemberName))
|
||||
{
|
||||
return null;
|
||||
}
|
||||
global::Windows.UI.Xaml.Markup.IXamlMember xamlMember;
|
||||
if (_xamlMembers.TryGetValue(longMemberName, out xamlMember))
|
||||
{
|
||||
return xamlMember;
|
||||
}
|
||||
xamlMember = CreateXamlMember(longMemberName);
|
||||
if (xamlMember != null)
|
||||
{
|
||||
_xamlMembers.Add(longMemberName, xamlMember);
|
||||
}
|
||||
return xamlMember;
|
||||
}
|
||||
|
||||
global::System.Collections.Generic.Dictionary<string, global::Windows.UI.Xaml.Markup.IXamlType>
|
||||
_xamlTypeCacheByName = new global::System.Collections.Generic.Dictionary<string, global::Windows.UI.Xaml.Markup.IXamlType>();
|
||||
|
||||
global::System.Collections.Generic.Dictionary<global::System.Type, global::Windows.UI.Xaml.Markup.IXamlType>
|
||||
_xamlTypeCacheByType = new global::System.Collections.Generic.Dictionary<global::System.Type, global::Windows.UI.Xaml.Markup.IXamlType>();
|
||||
|
||||
global::System.Collections.Generic.Dictionary<string, global::Windows.UI.Xaml.Markup.IXamlMember>
|
||||
_xamlMembers = new global::System.Collections.Generic.Dictionary<string, global::Windows.UI.Xaml.Markup.IXamlMember>();
|
||||
|
||||
string[] _typeNameTable = null;
|
||||
global::System.Type[] _typeTable = null;
|
||||
|
||||
private void InitTypeTables()
|
||||
{
|
||||
_typeNameTable = new string[9];
|
||||
_typeNameTable[0] = "ModernKeePass.MainPage";
|
||||
_typeNameTable[1] = "Windows.UI.Xaml.Controls.Page";
|
||||
_typeNameTable[2] = "Windows.UI.Xaml.Controls.UserControl";
|
||||
_typeNameTable[3] = "ModernKeePass.Pages.DatabaseViewPage";
|
||||
_typeNameTable[4] = "ModernKeePass.Common.ObservableDictionary";
|
||||
_typeNameTable[5] = "Object";
|
||||
_typeNameTable[6] = "String";
|
||||
_typeNameTable[7] = "ModernKeePass.Common.NavigationHelper";
|
||||
_typeNameTable[8] = "Windows.UI.Xaml.DependencyObject";
|
||||
|
||||
_typeTable = new global::System.Type[9];
|
||||
_typeTable[0] = typeof(global::ModernKeePass.MainPage);
|
||||
_typeTable[1] = typeof(global::Windows.UI.Xaml.Controls.Page);
|
||||
_typeTable[2] = typeof(global::Windows.UI.Xaml.Controls.UserControl);
|
||||
_typeTable[3] = typeof(global::ModernKeePass.Pages.DatabaseViewPage);
|
||||
_typeTable[4] = typeof(global::ModernKeePass.Common.ObservableDictionary);
|
||||
_typeTable[5] = typeof(global::System.Object);
|
||||
_typeTable[6] = typeof(global::System.String);
|
||||
_typeTable[7] = typeof(global::ModernKeePass.Common.NavigationHelper);
|
||||
_typeTable[8] = typeof(global::Windows.UI.Xaml.DependencyObject);
|
||||
}
|
||||
|
||||
private int LookupTypeIndexByName(string typeName)
|
||||
{
|
||||
if (_typeNameTable == null)
|
||||
{
|
||||
InitTypeTables();
|
||||
}
|
||||
for (int i=0; i<_typeNameTable.Length; i++)
|
||||
{
|
||||
if(0 == string.CompareOrdinal(_typeNameTable[i], typeName))
|
||||
{
|
||||
return i;
|
||||
}
|
||||
}
|
||||
return -1;
|
||||
}
|
||||
|
||||
private int LookupTypeIndexByType(global::System.Type type)
|
||||
{
|
||||
if (_typeTable == null)
|
||||
{
|
||||
InitTypeTables();
|
||||
}
|
||||
for(int i=0; i<_typeTable.Length; i++)
|
||||
{
|
||||
if(type == _typeTable[i])
|
||||
{
|
||||
return i;
|
||||
}
|
||||
}
|
||||
return -1;
|
||||
}
|
||||
|
||||
private object Activate_0_MainPage() { return new global::ModernKeePass.MainPage(); }
|
||||
private object Activate_3_DatabaseViewPage() { return new global::ModernKeePass.Pages.DatabaseViewPage(); }
|
||||
private object Activate_4_ObservableDictionary() { return new global::ModernKeePass.Common.ObservableDictionary(); }
|
||||
private void MapAdd_4_ObservableDictionary(object instance, object key, object item)
|
||||
{
|
||||
var collection = (global::System.Collections.Generic.IDictionary<global::System.String, global::System.Object>)instance;
|
||||
var newKey = (global::System.String)key;
|
||||
var newItem = (global::System.Object)item;
|
||||
collection.Add(newKey, newItem);
|
||||
}
|
||||
|
||||
private global::Windows.UI.Xaml.Markup.IXamlType CreateXamlType(int typeIndex)
|
||||
{
|
||||
global::ModernKeePass.ModernKeePass_XamlTypeInfo.XamlSystemBaseType xamlType = null;
|
||||
global::ModernKeePass.ModernKeePass_XamlTypeInfo.XamlUserType userType;
|
||||
string typeName = _typeNameTable[typeIndex];
|
||||
global::System.Type type = _typeTable[typeIndex];
|
||||
|
||||
switch (typeIndex)
|
||||
{
|
||||
|
||||
case 0: // ModernKeePass.MainPage
|
||||
userType = new global::ModernKeePass.ModernKeePass_XamlTypeInfo.XamlUserType(this, typeName, type, GetXamlTypeByName("Windows.UI.Xaml.Controls.Page"));
|
||||
userType.Activator = Activate_0_MainPage;
|
||||
userType.SetIsLocalType();
|
||||
xamlType = userType;
|
||||
break;
|
||||
|
||||
case 1: // Windows.UI.Xaml.Controls.Page
|
||||
xamlType = new global::ModernKeePass.ModernKeePass_XamlTypeInfo.XamlSystemBaseType(typeName, type);
|
||||
break;
|
||||
|
||||
case 2: // Windows.UI.Xaml.Controls.UserControl
|
||||
xamlType = new global::ModernKeePass.ModernKeePass_XamlTypeInfo.XamlSystemBaseType(typeName, type);
|
||||
break;
|
||||
|
||||
case 3: // ModernKeePass.Pages.DatabaseViewPage
|
||||
userType = new global::ModernKeePass.ModernKeePass_XamlTypeInfo.XamlUserType(this, typeName, type, GetXamlTypeByName("Windows.UI.Xaml.Controls.Page"));
|
||||
userType.Activator = Activate_3_DatabaseViewPage;
|
||||
userType.AddMemberName("DefaultViewModel");
|
||||
userType.AddMemberName("NavigationHelper");
|
||||
userType.SetIsLocalType();
|
||||
xamlType = userType;
|
||||
break;
|
||||
|
||||
case 4: // ModernKeePass.Common.ObservableDictionary
|
||||
userType = new global::ModernKeePass.ModernKeePass_XamlTypeInfo.XamlUserType(this, typeName, type, GetXamlTypeByName("Object"));
|
||||
userType.DictionaryAdd = MapAdd_4_ObservableDictionary;
|
||||
userType.SetIsReturnTypeStub();
|
||||
userType.SetIsLocalType();
|
||||
xamlType = userType;
|
||||
break;
|
||||
|
||||
case 5: // Object
|
||||
xamlType = new global::ModernKeePass.ModernKeePass_XamlTypeInfo.XamlSystemBaseType(typeName, type);
|
||||
break;
|
||||
|
||||
case 6: // String
|
||||
xamlType = new global::ModernKeePass.ModernKeePass_XamlTypeInfo.XamlSystemBaseType(typeName, type);
|
||||
break;
|
||||
|
||||
case 7: // ModernKeePass.Common.NavigationHelper
|
||||
userType = new global::ModernKeePass.ModernKeePass_XamlTypeInfo.XamlUserType(this, typeName, type, GetXamlTypeByName("Windows.UI.Xaml.DependencyObject"));
|
||||
userType.SetIsReturnTypeStub();
|
||||
userType.SetIsLocalType();
|
||||
xamlType = userType;
|
||||
break;
|
||||
|
||||
case 8: // Windows.UI.Xaml.DependencyObject
|
||||
xamlType = new global::ModernKeePass.ModernKeePass_XamlTypeInfo.XamlSystemBaseType(typeName, type);
|
||||
break;
|
||||
}
|
||||
return xamlType;
|
||||
}
|
||||
|
||||
|
||||
private object get_0_DatabaseViewPage_DefaultViewModel(object instance)
|
||||
{
|
||||
var that = (global::ModernKeePass.Pages.DatabaseViewPage)instance;
|
||||
return that.DefaultViewModel;
|
||||
}
|
||||
private object get_1_DatabaseViewPage_NavigationHelper(object instance)
|
||||
{
|
||||
var that = (global::ModernKeePass.Pages.DatabaseViewPage)instance;
|
||||
return that.NavigationHelper;
|
||||
}
|
||||
|
||||
private global::Windows.UI.Xaml.Markup.IXamlMember CreateXamlMember(string longMemberName)
|
||||
{
|
||||
global::ModernKeePass.ModernKeePass_XamlTypeInfo.XamlMember xamlMember = null;
|
||||
global::ModernKeePass.ModernKeePass_XamlTypeInfo.XamlUserType userType;
|
||||
|
||||
switch (longMemberName)
|
||||
{
|
||||
case "ModernKeePass.Pages.DatabaseViewPage.DefaultViewModel":
|
||||
userType = (global::ModernKeePass.ModernKeePass_XamlTypeInfo.XamlUserType)GetXamlTypeByName("ModernKeePass.Pages.DatabaseViewPage");
|
||||
xamlMember = new global::ModernKeePass.ModernKeePass_XamlTypeInfo.XamlMember(this, "DefaultViewModel", "ModernKeePass.Common.ObservableDictionary");
|
||||
xamlMember.Getter = get_0_DatabaseViewPage_DefaultViewModel;
|
||||
xamlMember.SetIsReadOnly();
|
||||
break;
|
||||
case "ModernKeePass.Pages.DatabaseViewPage.NavigationHelper":
|
||||
userType = (global::ModernKeePass.ModernKeePass_XamlTypeInfo.XamlUserType)GetXamlTypeByName("ModernKeePass.Pages.DatabaseViewPage");
|
||||
xamlMember = new global::ModernKeePass.ModernKeePass_XamlTypeInfo.XamlMember(this, "NavigationHelper", "ModernKeePass.Common.NavigationHelper");
|
||||
xamlMember.Getter = get_1_DatabaseViewPage_NavigationHelper;
|
||||
xamlMember.SetIsReadOnly();
|
||||
break;
|
||||
}
|
||||
return xamlMember;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Windows.UI.Xaml.Build.Tasks", "4.0.0.0")]
|
||||
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
internal class XamlSystemBaseType : global::Windows.UI.Xaml.Markup.IXamlType
|
||||
{
|
||||
string _fullName;
|
||||
global::System.Type _underlyingType;
|
||||
|
||||
public XamlSystemBaseType(string fullName, global::System.Type underlyingType)
|
||||
{
|
||||
_fullName = fullName;
|
||||
_underlyingType = underlyingType;
|
||||
}
|
||||
|
||||
public string FullName { get { return _fullName; } }
|
||||
|
||||
public global::System.Type UnderlyingType
|
||||
{
|
||||
get
|
||||
{
|
||||
return _underlyingType;
|
||||
}
|
||||
}
|
||||
|
||||
virtual public global::Windows.UI.Xaml.Markup.IXamlType BaseType { get { throw new global::System.NotImplementedException(); } }
|
||||
virtual public global::Windows.UI.Xaml.Markup.IXamlMember ContentProperty { get { throw new global::System.NotImplementedException(); } }
|
||||
virtual public global::Windows.UI.Xaml.Markup.IXamlMember GetMember(string name) { throw new global::System.NotImplementedException(); }
|
||||
virtual public bool IsArray { get { throw new global::System.NotImplementedException(); } }
|
||||
virtual public bool IsCollection { get { throw new global::System.NotImplementedException(); } }
|
||||
virtual public bool IsConstructible { get { throw new global::System.NotImplementedException(); } }
|
||||
virtual public bool IsDictionary { get { throw new global::System.NotImplementedException(); } }
|
||||
virtual public bool IsMarkupExtension { get { throw new global::System.NotImplementedException(); } }
|
||||
virtual public bool IsBindable { get { throw new global::System.NotImplementedException(); } }
|
||||
virtual public bool IsReturnTypeStub { get { throw new global::System.NotImplementedException(); } }
|
||||
virtual public bool IsLocalType { get { throw new global::System.NotImplementedException(); } }
|
||||
virtual public global::Windows.UI.Xaml.Markup.IXamlType ItemType { get { throw new global::System.NotImplementedException(); } }
|
||||
virtual public global::Windows.UI.Xaml.Markup.IXamlType KeyType { get { throw new global::System.NotImplementedException(); } }
|
||||
virtual public object ActivateInstance() { throw new global::System.NotImplementedException(); }
|
||||
virtual public void AddToMap(object instance, object key, object item) { throw new global::System.NotImplementedException(); }
|
||||
virtual public void AddToVector(object instance, object item) { throw new global::System.NotImplementedException(); }
|
||||
virtual public void RunInitializer() { throw new global::System.NotImplementedException(); }
|
||||
virtual public object CreateFromString(string input) { throw new global::System.NotImplementedException(); }
|
||||
}
|
||||
|
||||
internal delegate object Activator();
|
||||
internal delegate void AddToCollection(object instance, object item);
|
||||
internal delegate void AddToDictionary(object instance, object key, object item);
|
||||
|
||||
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Windows.UI.Xaml.Build.Tasks", "4.0.0.0")]
|
||||
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
internal class XamlUserType : global::ModernKeePass.ModernKeePass_XamlTypeInfo.XamlSystemBaseType
|
||||
{
|
||||
global::ModernKeePass.ModernKeePass_XamlTypeInfo.XamlTypeInfoProvider _provider;
|
||||
global::Windows.UI.Xaml.Markup.IXamlType _baseType;
|
||||
bool _isArray;
|
||||
bool _isMarkupExtension;
|
||||
bool _isBindable;
|
||||
bool _isReturnTypeStub;
|
||||
bool _isLocalType;
|
||||
|
||||
string _contentPropertyName;
|
||||
string _itemTypeName;
|
||||
string _keyTypeName;
|
||||
global::System.Collections.Generic.Dictionary<string, string> _memberNames;
|
||||
global::System.Collections.Generic.Dictionary<string, object> _enumValues;
|
||||
|
||||
public XamlUserType(global::ModernKeePass.ModernKeePass_XamlTypeInfo.XamlTypeInfoProvider provider, string fullName, global::System.Type fullType, global::Windows.UI.Xaml.Markup.IXamlType baseType)
|
||||
:base(fullName, fullType)
|
||||
{
|
||||
_provider = provider;
|
||||
_baseType = baseType;
|
||||
}
|
||||
|
||||
// --- Interface methods ----
|
||||
|
||||
override public global::Windows.UI.Xaml.Markup.IXamlType BaseType { get { return _baseType; } }
|
||||
override public bool IsArray { get { return _isArray; } }
|
||||
override public bool IsCollection { get { return (CollectionAdd != null); } }
|
||||
override public bool IsConstructible { get { return (Activator != null); } }
|
||||
override public bool IsDictionary { get { return (DictionaryAdd != null); } }
|
||||
override public bool IsMarkupExtension { get { return _isMarkupExtension; } }
|
||||
override public bool IsBindable { get { return _isBindable; } }
|
||||
override public bool IsReturnTypeStub { get { return _isReturnTypeStub; } }
|
||||
override public bool IsLocalType { get { return _isLocalType; } }
|
||||
|
||||
override public global::Windows.UI.Xaml.Markup.IXamlMember ContentProperty
|
||||
{
|
||||
get { return _provider.GetMemberByLongName(_contentPropertyName); }
|
||||
}
|
||||
|
||||
override public global::Windows.UI.Xaml.Markup.IXamlType ItemType
|
||||
{
|
||||
get { return _provider.GetXamlTypeByName(_itemTypeName); }
|
||||
}
|
||||
|
||||
override public global::Windows.UI.Xaml.Markup.IXamlType KeyType
|
||||
{
|
||||
get { return _provider.GetXamlTypeByName(_keyTypeName); }
|
||||
}
|
||||
|
||||
override public global::Windows.UI.Xaml.Markup.IXamlMember GetMember(string name)
|
||||
{
|
||||
if (_memberNames == null)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
string longName;
|
||||
if (_memberNames.TryGetValue(name, out longName))
|
||||
{
|
||||
return _provider.GetMemberByLongName(longName);
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
override public object ActivateInstance()
|
||||
{
|
||||
return Activator();
|
||||
}
|
||||
|
||||
override public void AddToMap(object instance, object key, object item)
|
||||
{
|
||||
DictionaryAdd(instance, key, item);
|
||||
}
|
||||
|
||||
override public void AddToVector(object instance, object item)
|
||||
{
|
||||
CollectionAdd(instance, item);
|
||||
}
|
||||
|
||||
override public void RunInitializer()
|
||||
{
|
||||
System.Runtime.CompilerServices.RuntimeHelpers.RunClassConstructor(UnderlyingType.TypeHandle);
|
||||
}
|
||||
|
||||
override public object CreateFromString(string input)
|
||||
{
|
||||
if (_enumValues != null)
|
||||
{
|
||||
int value = 0;
|
||||
|
||||
string[] valueParts = input.Split(',');
|
||||
|
||||
foreach (string valuePart in valueParts)
|
||||
{
|
||||
object partValue;
|
||||
int enumFieldValue = 0;
|
||||
try
|
||||
{
|
||||
if (_enumValues.TryGetValue(valuePart.Trim(), out partValue))
|
||||
{
|
||||
enumFieldValue = global::System.Convert.ToInt32(partValue);
|
||||
}
|
||||
else
|
||||
{
|
||||
try
|
||||
{
|
||||
enumFieldValue = global::System.Convert.ToInt32(valuePart.Trim());
|
||||
}
|
||||
catch( global::System.FormatException )
|
||||
{
|
||||
foreach( string key in _enumValues.Keys )
|
||||
{
|
||||
if( string.Compare(valuePart.Trim(), key, global::System.StringComparison.OrdinalIgnoreCase) == 0 )
|
||||
{
|
||||
if( _enumValues.TryGetValue(key.Trim(), out partValue) )
|
||||
{
|
||||
enumFieldValue = global::System.Convert.ToInt32(partValue);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
value |= enumFieldValue;
|
||||
}
|
||||
catch( global::System.FormatException )
|
||||
{
|
||||
throw new global::System.ArgumentException(input, FullName);
|
||||
}
|
||||
}
|
||||
|
||||
return value;
|
||||
}
|
||||
throw new global::System.ArgumentException(input, FullName);
|
||||
}
|
||||
|
||||
// --- End of Interface methods
|
||||
|
||||
public Activator Activator { get; set; }
|
||||
public AddToCollection CollectionAdd { get; set; }
|
||||
public AddToDictionary DictionaryAdd { get; set; }
|
||||
|
||||
public void SetContentPropertyName(string contentPropertyName)
|
||||
{
|
||||
_contentPropertyName = contentPropertyName;
|
||||
}
|
||||
|
||||
public void SetIsArray()
|
||||
{
|
||||
_isArray = true;
|
||||
}
|
||||
|
||||
public void SetIsMarkupExtension()
|
||||
{
|
||||
_isMarkupExtension = true;
|
||||
}
|
||||
|
||||
public void SetIsBindable()
|
||||
{
|
||||
_isBindable = true;
|
||||
}
|
||||
|
||||
public void SetIsReturnTypeStub()
|
||||
{
|
||||
_isReturnTypeStub = true;
|
||||
}
|
||||
|
||||
public void SetIsLocalType()
|
||||
{
|
||||
_isLocalType = true;
|
||||
}
|
||||
|
||||
public void SetItemTypeName(string itemTypeName)
|
||||
{
|
||||
_itemTypeName = itemTypeName;
|
||||
}
|
||||
|
||||
public void SetKeyTypeName(string keyTypeName)
|
||||
{
|
||||
_keyTypeName = keyTypeName;
|
||||
}
|
||||
|
||||
public void AddMemberName(string shortName)
|
||||
{
|
||||
if(_memberNames == null)
|
||||
{
|
||||
_memberNames = new global::System.Collections.Generic.Dictionary<string,string>();
|
||||
}
|
||||
_memberNames.Add(shortName, FullName + "." + shortName);
|
||||
}
|
||||
|
||||
public void AddEnumValue(string name, object value)
|
||||
{
|
||||
if (_enumValues == null)
|
||||
{
|
||||
_enumValues = new global::System.Collections.Generic.Dictionary<string, object>();
|
||||
}
|
||||
_enumValues.Add(name, value);
|
||||
}
|
||||
}
|
||||
|
||||
internal delegate object Getter(object instance);
|
||||
internal delegate void Setter(object instance, object value);
|
||||
|
||||
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Windows.UI.Xaml.Build.Tasks", "4.0.0.0")]
|
||||
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
internal class XamlMember : global::Windows.UI.Xaml.Markup.IXamlMember
|
||||
{
|
||||
global::ModernKeePass.ModernKeePass_XamlTypeInfo.XamlTypeInfoProvider _provider;
|
||||
string _name;
|
||||
bool _isAttachable;
|
||||
bool _isDependencyProperty;
|
||||
bool _isReadOnly;
|
||||
|
||||
string _typeName;
|
||||
string _targetTypeName;
|
||||
|
||||
public XamlMember(global::ModernKeePass.ModernKeePass_XamlTypeInfo.XamlTypeInfoProvider provider, string name, string typeName)
|
||||
{
|
||||
_name = name;
|
||||
_typeName = typeName;
|
||||
_provider = provider;
|
||||
}
|
||||
|
||||
public string Name { get { return _name; } }
|
||||
|
||||
public global::Windows.UI.Xaml.Markup.IXamlType Type
|
||||
{
|
||||
get { return _provider.GetXamlTypeByName(_typeName); }
|
||||
}
|
||||
|
||||
public void SetTargetTypeName(string targetTypeName)
|
||||
{
|
||||
_targetTypeName = targetTypeName;
|
||||
}
|
||||
public global::Windows.UI.Xaml.Markup.IXamlType TargetType
|
||||
{
|
||||
get { return _provider.GetXamlTypeByName(_targetTypeName); }
|
||||
}
|
||||
|
||||
public void SetIsAttachable() { _isAttachable = true; }
|
||||
public bool IsAttachable { get { return _isAttachable; } }
|
||||
|
||||
public void SetIsDependencyProperty() { _isDependencyProperty = true; }
|
||||
public bool IsDependencyProperty { get { return _isDependencyProperty; } }
|
||||
|
||||
public void SetIsReadOnly() { _isReadOnly = true; }
|
||||
public bool IsReadOnly { get { return _isReadOnly; } }
|
||||
|
||||
public Getter Getter { get; set; }
|
||||
public object GetValue(object instance)
|
||||
{
|
||||
if (Getter != null)
|
||||
return Getter(instance);
|
||||
else
|
||||
throw new global::System.InvalidOperationException("GetValue");
|
||||
}
|
||||
|
||||
public Setter Setter { get; set; }
|
||||
public void SetValue(object instance, object value)
|
||||
{
|
||||
if (Setter != null)
|
||||
Setter(instance, value);
|
||||
else
|
||||
throw new global::System.InvalidOperationException("SetValue");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
@@ -1,8 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<packages>
|
||||
<package id="Microsoft.NETCore.Platforms" version="1.1.0" targetFramework="win81" />
|
||||
<package id="Microsoft.NETCore.Platforms" version="2.0.0" targetFramework="win81" />
|
||||
<package id="Microsoft.NETCore.Portable.Compatibility" version="1.0.1" targetFramework="win81" />
|
||||
<package id="ModernKeePassLib" version="2.19.0.27133" targetFramework="win81" />
|
||||
<package id="ModernKeePassLib" version="2.19.0.26202" targetFramework="win81" />
|
||||
<package id="NETStandard.Library" version="2.0.0" targetFramework="win81" />
|
||||
<package id="System.Runtime.InteropServices.RuntimeInformation" version="4.3.0" targetFramework="win81" />
|
||||
<package id="System.Runtime.WindowsRuntime" version="4.3.0" targetFramework="win81" />
|
||||
|
@@ -42,8 +42,8 @@ namespace ModernKeePassLib.Serialization
|
||||
|
||||
public override byte[] ReadBytes(int count)
|
||||
{
|
||||
try
|
||||
{
|
||||
/*try
|
||||
{*/
|
||||
byte[] pb = base.ReadBytes(count);
|
||||
if((pb == null) || (pb.Length != count))
|
||||
{
|
||||
@@ -52,12 +52,12 @@ namespace ModernKeePassLib.Serialization
|
||||
}
|
||||
|
||||
return pb;
|
||||
}
|
||||
catch(Exception)
|
||||
/*}
|
||||
catch(Exception ex)
|
||||
{
|
||||
if(m_strReadExcp != null) throw new IOException(m_strReadExcp);
|
||||
else throw;
|
||||
}
|
||||
}*/
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -252,15 +252,12 @@ namespace ModernKeePassLib.Serialization
|
||||
{
|
||||
try
|
||||
{
|
||||
var sampleFile = await StorageFile.GetFileFromPathAsync(ioc.Path);
|
||||
using (IRandomAccessStream stream = await sampleFile.OpenAsync(FileAccessMode.Read))
|
||||
{
|
||||
return stream.AsStream();
|
||||
}
|
||||
IRandomAccessStream stream = await ioc.StorageFile.OpenAsync(FileAccessMode.Read);
|
||||
return stream.AsStream();
|
||||
}
|
||||
catch
|
||||
catch (Exception ex)
|
||||
{
|
||||
Debug.Assert(false, "Not implemented yet");
|
||||
Debug.Assert(false, ex.Message);
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
@@ -27,6 +27,7 @@ using System.Diagnostics;
|
||||
|
||||
using ModernKeePassLib.Interfaces;
|
||||
using ModernKeePassLib.Utility;
|
||||
using Windows.Storage;
|
||||
|
||||
namespace ModernKeePassLib.Serialization
|
||||
{
|
||||
@@ -62,9 +63,11 @@ namespace ModernKeePassLib.Serialization
|
||||
|
||||
public sealed class IOConnectionInfo : IDeepCloneable<IOConnectionInfo>
|
||||
{
|
||||
// private IOFileFormatHint m_ioHint = IOFileFormatHint.None;
|
||||
// private IOFileFormatHint m_ioHint = IOFileFormatHint.None;
|
||||
|
||||
private string m_strUrl = string.Empty;
|
||||
public StorageFile StorageFile { get; set; }
|
||||
|
||||
private string m_strUrl = string.Empty;
|
||||
public string Path
|
||||
{
|
||||
get { return m_strUrl; }
|
||||
@@ -296,7 +299,18 @@ namespace ModernKeePassLib.Serialization
|
||||
return ioc;
|
||||
}
|
||||
|
||||
public bool CanProbablyAccess()
|
||||
public static IOConnectionInfo FromFile(StorageFile file)
|
||||
{
|
||||
IOConnectionInfo ioc = new IOConnectionInfo();
|
||||
|
||||
ioc.Path = file.Path;
|
||||
ioc.CredSaveMode = IOCredSaveMode.NoSave;
|
||||
ioc.StorageFile = file;
|
||||
|
||||
return ioc;
|
||||
}
|
||||
|
||||
public bool CanProbablyAccess()
|
||||
{
|
||||
Debug.Assert(false, "not yet implemented");
|
||||
return false;
|
||||
|
Binary file not shown.
Binary file not shown.
@@ -1,3 +1,5 @@
|
||||
C:\Users\GBE\Source\Repos\ModernKeePass\ModernKeePassLib\bin\Debug\ModernKeePassLib.dll
|
||||
C:\Users\GBE\Source\Repos\ModernKeePass\ModernKeePassLib\bin\Debug\ModernKeePassLib.pdb
|
||||
C:\Users\GBE\Source\Repos\ModernKeePass\ModernKeePassLib\bin\Debug\System.Net.Requests.dll
|
||||
C:\Users\GBE\Source\Repos\ModernKeePass\ModernKeePassLib\bin\Debug\System.Xml.XmlSerializer.dll
|
||||
C:\Users\GBE\Source\Repos\ModernKeePass\ModernKeePassLib\bin\Debug\Windows.winmd
|
||||
@@ -5,7 +7,5 @@ C:\Users\GBE\Source\Repos\ModernKeePass\ModernKeePassLib\bin\Debug\System.Net.Re
|
||||
C:\Users\GBE\Source\Repos\ModernKeePass\ModernKeePassLib\bin\Debug\System.Xml.XmlSerializer.xml
|
||||
C:\Users\GBE\Source\Repos\ModernKeePass\ModernKeePassLib\bin\Debug\Windows.xml
|
||||
C:\Users\GBE\Source\Repos\ModernKeePass\ModernKeePassLib\obj\Debug\ModernKeePassLib.csprojResolveAssemblyReference.cache
|
||||
C:\Users\GBE\Source\Repos\ModernKeePass\ModernKeePassLib\bin\Debug\ModernKeePassLib.dll
|
||||
C:\Users\GBE\Source\Repos\ModernKeePass\ModernKeePassLib\bin\Debug\ModernKeePassLib.pdb
|
||||
C:\Users\GBE\Source\Repos\ModernKeePass\ModernKeePassLib\obj\Debug\ModernKeePassLib.dll
|
||||
C:\Users\GBE\Source\Repos\ModernKeePass\ModernKeePassLib\obj\Debug\ModernKeePassLib.pdb
|
||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1,128 +0,0 @@
|
||||
|
||||
MICROSOFT SOFTWARE LICENSE TERMS
|
||||
|
||||
|
||||
MICROSOFT .NET LIBRARY
|
||||
|
||||
These license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft
|
||||
|
||||
· updates,
|
||||
|
||||
· supplements,
|
||||
|
||||
· Internet-based services, and
|
||||
|
||||
· support services
|
||||
|
||||
for this software, unless other terms accompany those items. If so, those terms apply.
|
||||
|
||||
BY USING THE SOFTWARE, YOU ACCEPT THESE TERMS. IF YOU DO NOT ACCEPT THEM, DO NOT USE THE SOFTWARE.
|
||||
|
||||
|
||||
IF YOU COMPLY WITH THESE LICENSE TERMS, YOU HAVE THE PERPETUAL RIGHTS BELOW.
|
||||
|
||||
1. INSTALLATION AND USE RIGHTS.
|
||||
|
||||
a. Installation and Use. You may install and use any number of copies of the software to design, develop and test your programs.
|
||||
|
||||
b. Third Party Programs. The software may include third party programs that Microsoft, not the third party, licenses to you under this agreement. Notices, if any, for the third party program are included for your information only.
|
||||
|
||||
2. ADDITIONAL LICENSING REQUIREMENTS AND/OR USE RIGHTS.
|
||||
|
||||
a. DISTRIBUTABLE CODE. The software is comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in programs you develop if you comply with the terms below.
|
||||
|
||||
i. Right to Use and Distribute.
|
||||
|
||||
· You may copy and distribute the object code form of the software.
|
||||
|
||||
· Third Party Distribution. You may permit distributors of your programs to copy and distribute the Distributable Code as part of those programs.
|
||||
|
||||
ii. Distribution Requirements. For any Distributable Code you distribute, you must
|
||||
|
||||
· add significant primary functionality to it in your programs;
|
||||
|
||||
· require distributors and external end users to agree to terms that protect it at least as much as this agreement;
|
||||
|
||||
· display your valid copyright notice on your programs; and
|
||||
|
||||
· indemnify, defend, and hold harmless Microsoft from any claims, including attorneys’ fees, related to the distribution or use of your programs.
|
||||
|
||||
iii. Distribution Restrictions. You may not
|
||||
|
||||
· alter any copyright, trademark or patent notice in the Distributable Code;
|
||||
|
||||
· use Microsoft’s trademarks in your programs’ names or in a way that suggests your programs come from or are endorsed by Microsoft;
|
||||
|
||||
· include Distributable Code in malicious, deceptive or unlawful programs; or
|
||||
|
||||
· modify or distribute the source code of any Distributable Code so that any part of it becomes subject to an Excluded License. An Excluded License is one that requires, as a condition of use, modification or distribution, that
|
||||
|
||||
· the code be disclosed or distributed in source code form; or
|
||||
|
||||
· others have the right to modify it.
|
||||
|
||||
3. SCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not
|
||||
|
||||
· work around any technical limitations in the software;
|
||||
|
||||
· reverse engineer, decompile or disassemble the software, except and only to the extent that applicable law expressly permits, despite this limitation;
|
||||
|
||||
· publish the software for others to copy;
|
||||
|
||||
· rent, lease or lend the software;
|
||||
|
||||
· transfer the software or this agreement to any third party; or
|
||||
|
||||
· use the software for commercial software hosting services.
|
||||
|
||||
4. BACKUP COPY. You may make one backup copy of the software. You may use it only to reinstall the software.
|
||||
|
||||
5. DOCUMENTATION. Any person that has valid access to your computer or internal network may copy and use the documentation for your internal, reference purposes.
|
||||
|
||||
6. EXPORT RESTRICTIONS. The software is subject to United States export laws and regulations. You must comply with all domestic and international export laws and regulations that apply to the software. These laws include restrictions on destinations, end users and end use. For additional information, see www.microsoft.com/exporting.
|
||||
|
||||
7. SUPPORT SERVICES. Because this software is “as is,” we may not provide support services for it.
|
||||
|
||||
8. ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services.
|
||||
|
||||
9. APPLICABLE LAW.
|
||||
|
||||
a. United States. If you acquired the software in the United States, Washington state law governs the interpretation of this agreement and applies to claims for breach of it, regardless of conflict of laws principles. The laws of the state where you live govern all other claims, including claims under state consumer protection laws, unfair competition laws, and in tort.
|
||||
|
||||
b. Outside the United States. If you acquired the software in any other country, the laws of that country apply.
|
||||
|
||||
10. LEGAL EFFECT. This agreement describes certain legal rights. You may have other rights under the laws of your country. You may also have rights with respect to the party from whom you acquired the software. This agreement does not change your rights under the laws of your country if the laws of your country do not permit it to do so.
|
||||
|
||||
11. DISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. YOU MAY HAVE ADDITIONAL CONSUMER RIGHTS OR STATUTORY GUARANTEES UNDER YOUR LOCAL LAWS WHICH THIS AGREEMENT CANNOT CHANGE. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
|
||||
|
||||
FOR AUSTRALIA – YOU HAVE STATUTORY GUARANTEES UNDER THE AUSTRALIAN CONSUMER LAW AND NOTHING IN THESE TERMS IS INTENDED TO AFFECT THOSE RIGHTS.
|
||||
|
||||
12. LIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES.
|
||||
|
||||
This limitation applies to
|
||||
|
||||
· anything related to the software, services, content (including code) on third party Internet sites, or third party programs; and
|
||||
|
||||
· claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law.
|
||||
|
||||
It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages.
|
||||
|
||||
Please note: As this software is distributed in Quebec, Canada, some of the clauses in this agreement are provided below in French.
|
||||
|
||||
Remarque : Ce logiciel étant distribué au Québec, Canada, certaines des clauses dans ce contrat sont fournies ci-dessous en français.
|
||||
|
||||
EXONÉRATION DE GARANTIE. Le logiciel visé par une licence est offert « tel quel ». Toute utilisation de ce logiciel est à votre seule risque et péril. Microsoft n’accorde aucune autre garantie expresse. Vous pouvez bénéficier de droits additionnels en vertu du droit local sur la protection des consommateurs, que ce contrat ne peut modifier. La ou elles sont permises par le droit locale, les garanties implicites de qualité marchande, d’adéquation à un usage particulier et d’absence de contrefaçon sont exclues.
|
||||
|
||||
LIMITATION DES DOMMAGES-INTÉRÊTS ET EXCLUSION DE RESPONSABILITÉ POUR LES DOMMAGES. Vous pouvez obtenir de Microsoft et de ses fournisseurs une indemnisation en cas de dommages directs uniquement à hauteur de 5,00 $ US. Vous ne pouvez prétendre à aucune indemnisation pour les autres dommages, y compris les dommages spéciaux, indirects ou accessoires et pertes de bénéfices.
|
||||
|
||||
Cette limitation concerne :
|
||||
|
||||
· tout ce qui est relié au logiciel, aux services ou au contenu (y compris le code) figurant sur des sites Internet tiers ou dans des programmes tiers ; et
|
||||
|
||||
· les réclamations au titre de violation de contrat ou de garantie, ou au titre de responsabilité stricte, de négligence ou d’une autre faute dans la limite autorisée par la loi en vigueur.
|
||||
|
||||
Elle s’applique également, même si Microsoft connaissait ou devrait connaître l’éventualité d’un tel dommage. Si votre pays n’autorise pas l’exclusion ou la limitation de responsabilité pour les dommages indirects, accessoires ou de quelque nature que ce soit, il se peut que la limitation ou l’exclusion ci-dessus ne s’appliquera pas à votre égard.
|
||||
|
||||
EFFET JURIDIQUE. Le présent contrat décrit certains droits juridiques. Vous pourriez avoir d’autres droits prévus par les lois de votre pays. Le présent contrat ne modifie pas les droits que vous confèrent les lois de votre pays si celles-ci ne le permettent pas.
|
||||
|
||||
|
@@ -1,406 +0,0 @@
|
||||
{
|
||||
"runtimes": {
|
||||
"base": {
|
||||
},
|
||||
|
||||
"any": {
|
||||
"#import": [ "base" ]
|
||||
},
|
||||
|
||||
"win": {
|
||||
"#import": [ "any" ]
|
||||
},
|
||||
"win-x86": {
|
||||
"#import": [ "win" ]
|
||||
},
|
||||
"win-x64": {
|
||||
"#import": [ "win" ]
|
||||
},
|
||||
|
||||
"win7": {
|
||||
"#import": [ "win" ]
|
||||
},
|
||||
"win7-x86": {
|
||||
"#import": [ "win7", "win-x86" ]
|
||||
},
|
||||
"win7-x64": {
|
||||
"#import": [ "win7", "win-x64" ]
|
||||
},
|
||||
|
||||
"win8": {
|
||||
"#import": [ "win7" ]
|
||||
},
|
||||
"win8-x86": {
|
||||
"#import": [ "win8", "win7-x86" ]
|
||||
},
|
||||
"win8-x64": {
|
||||
"#import": [ "win8", "win7-x64" ]
|
||||
},
|
||||
"win8-arm": {
|
||||
"#import": [ "win8" ]
|
||||
},
|
||||
|
||||
"win81": {
|
||||
"#import": [ "win8" ]
|
||||
},
|
||||
"win81-x86": {
|
||||
"#import": [ "win81", "win8-x86" ]
|
||||
},
|
||||
"win81-x64": {
|
||||
"#import": [ "win81", "win8-x64" ]
|
||||
},
|
||||
"win81-arm": {
|
||||
"#import": [ "win81", "win8-arm" ]
|
||||
},
|
||||
|
||||
"win10": {
|
||||
"#import": [ "win81" ]
|
||||
},
|
||||
"win10-x86": {
|
||||
"#import": [ "win10", "win81-x86" ]
|
||||
},
|
||||
"win10-x64": {
|
||||
"#import": [ "win10", "win81-x64" ]
|
||||
},
|
||||
"win10-arm": {
|
||||
"#import": [ "win10", "win81-arm" ]
|
||||
},
|
||||
"win10-arm64": {
|
||||
"#import": [ "win10" ]
|
||||
},
|
||||
|
||||
"aot": {
|
||||
"#import": [ "any" ]
|
||||
},
|
||||
|
||||
"win-aot": {
|
||||
"#import": [ "win", "aot" ]
|
||||
},
|
||||
"win-x86-aot": {
|
||||
"#import": [ "win-aot", "win-x86" ]
|
||||
},
|
||||
"win-x64-aot": {
|
||||
"#import": [ "win-aot", "win-x64" ]
|
||||
},
|
||||
|
||||
"win7-aot": {
|
||||
"#import": [ "win-aot", "win7" ]
|
||||
},
|
||||
"win7-x86-aot": {
|
||||
"#import": [ "win7-aot", "win7-x86" ]
|
||||
},
|
||||
"win7-x64-aot": {
|
||||
"#import": [ "win7-aot", "win7-x64" ]
|
||||
},
|
||||
|
||||
"win8-aot": {
|
||||
"#import": [ "win8", "win7-aot" ]
|
||||
},
|
||||
"win8-x86-aot": {
|
||||
"#import": [ "win8-aot", "win8-x86", "win7-x86-aot" ]
|
||||
},
|
||||
"win8-x64-aot": {
|
||||
"#import": [ "win8-aot", "win8-x64", "win7-x64-aot" ]
|
||||
},
|
||||
"win8-arm-aot": {
|
||||
"#import": [ "win8-aot", "win8-arm" ]
|
||||
},
|
||||
|
||||
"win81-aot": {
|
||||
"#import": [ "win81", "win8-aot" ]
|
||||
},
|
||||
"win81-x86-aot": {
|
||||
"#import": [ "win81-aot", "win81-x86", "win8-x86-aot" ]
|
||||
},
|
||||
"win81-x64-aot": {
|
||||
"#import": [ "win81-aot", "win81-x64", "win8-x64-aot" ]
|
||||
},
|
||||
"win81-arm-aot": {
|
||||
"#import": [ "win81-aot", "win81-arm", "win8-arm-aot" ]
|
||||
},
|
||||
|
||||
"win10-aot": {
|
||||
"#import": [ "win10", "win81-aot" ]
|
||||
},
|
||||
"win10-x86-aot": {
|
||||
"#import": [ "win10-aot", "win10-x86", "win81-x86-aot" ]
|
||||
},
|
||||
"win10-x64-aot": {
|
||||
"#import": [ "win10-aot", "win10-x64", "win81-x64-aot" ]
|
||||
},
|
||||
"win10-arm-aot": {
|
||||
"#import": [ "win10-aot", "win10-arm", "win81-arm-aot" ]
|
||||
},
|
||||
"win10-arm64-aot": {
|
||||
"#import": [ "win10-aot", "win10-arm64" ]
|
||||
},
|
||||
|
||||
"unix": {
|
||||
"#import": [ "any" ]
|
||||
},
|
||||
"unix-x64": {
|
||||
"#import": [ "unix" ]
|
||||
},
|
||||
|
||||
"osx": {
|
||||
"#import": [ "unix" ]
|
||||
},
|
||||
"osx-x64": {
|
||||
"#import": [ "osx", "unix-x64" ]
|
||||
},
|
||||
|
||||
"osx.10.10": {
|
||||
"#import": [ "osx" ]
|
||||
},
|
||||
"osx.10.10-x64": {
|
||||
"#import": [ "osx.10.10", "osx-x64" ]
|
||||
},
|
||||
|
||||
"osx.10.11": {
|
||||
"#import": [ "osx.10.10" ]
|
||||
},
|
||||
"osx.10.11-x64": {
|
||||
"#import": [ "osx.10.11", "osx.10.10-x64" ]
|
||||
},
|
||||
|
||||
"osx.10.12": {
|
||||
"#import": [ "osx.10.11" ]
|
||||
},
|
||||
"osx.10.12-x64": {
|
||||
"#import": [ "osx.10.12", "osx.10.11-x64" ]
|
||||
},
|
||||
|
||||
"linux": {
|
||||
"#import": [ "unix" ]
|
||||
},
|
||||
"linux-x64": {
|
||||
"#import": [ "linux", "unix-x64" ]
|
||||
},
|
||||
|
||||
"rhel": {
|
||||
"#import": [ "linux" ]
|
||||
},
|
||||
"rhel-x64": {
|
||||
"#import": [ "rhel", "linux-x64" ]
|
||||
},
|
||||
|
||||
"rhel.7": {
|
||||
"#import": [ "rhel" ]
|
||||
},
|
||||
"rhel.7-x64": {
|
||||
"#import": [ "rhel", "rhel-x64" ]
|
||||
},
|
||||
|
||||
"rhel.7.0": {
|
||||
"#import": [ "rhel.7" ]
|
||||
},
|
||||
"rhel.7.0-x64": {
|
||||
"#import": [ "rhel.7", "rhel.7-x64" ]
|
||||
},
|
||||
|
||||
"rhel.7.1": {
|
||||
"#import": [ "rhel.7.0" ]
|
||||
},
|
||||
"rhel.7.1-x64": {
|
||||
"#import": [ "rhel.7.0", "rhel.7.0-x64" ]
|
||||
},
|
||||
|
||||
"rhel.7.2": {
|
||||
"#import": [ "rhel.7.1" ]
|
||||
},
|
||||
"rhel.7.2-x64": {
|
||||
"#import": [ "rhel.7.1", "rhel.7.1-x64" ]
|
||||
},
|
||||
|
||||
"ol": {
|
||||
"#import": [ "rhel" ]
|
||||
},
|
||||
"ol-x64": {
|
||||
"#import": [ "ol", "rhel-x64" ]
|
||||
},
|
||||
|
||||
"ol.7": {
|
||||
"#import": [ "ol", "rhel.7" ]
|
||||
},
|
||||
"ol.7-x64": {
|
||||
"#import": [ "ol.7", "ol-x64", "rhel.7-x64" ]
|
||||
},
|
||||
|
||||
"ol.7.0": {
|
||||
"#import": [ "ol.7", "rhel.7.0" ]
|
||||
},
|
||||
"ol.7.0-x64": {
|
||||
"#import": [ "ol.7", "ol.7-x64", "rhel.7.0-x64" ]
|
||||
},
|
||||
|
||||
"ol.7.1": {
|
||||
"#import": [ "ol.7.0", "rhel.7.1" ]
|
||||
},
|
||||
"ol.7.1-x64": {
|
||||
"#import": [ "ol.7.0", "ol.7.0-x64", "rhel.7.1-x64" ]
|
||||
},
|
||||
|
||||
"ol.7.2": {
|
||||
"#import": [ "ol.7.1", "rhel.7.2" ]
|
||||
},
|
||||
"ol.7.2-x64": {
|
||||
"#import": [ "ol.7.1", "ol.7.1-x64", "rhel.7.2-x64" ]
|
||||
},
|
||||
|
||||
"centos": {
|
||||
"#import": [ "rhel" ]
|
||||
},
|
||||
"centos-x64": {
|
||||
"#import": [ "centos", "rhel-x64" ]
|
||||
},
|
||||
|
||||
"centos.7": {
|
||||
"#import": [ "centos", "rhel.7" ]
|
||||
},
|
||||
"centos.7-x64": {
|
||||
"#import": [ "centos.7", "centos-x64", "rhel.7-x64" ]
|
||||
},
|
||||
|
||||
"debian": {
|
||||
"#import": [ "linux" ]
|
||||
},
|
||||
"debian-x64": {
|
||||
"#import": [ "debian", "linux-x64" ]
|
||||
},
|
||||
|
||||
"debian.8": {
|
||||
"#import": [ "debian" ]
|
||||
},
|
||||
"debian.8-x64": {
|
||||
"#import": [ "debian.8", "debian-x64" ]
|
||||
},
|
||||
|
||||
"ubuntu": {
|
||||
"#import": [ "debian" ]
|
||||
},
|
||||
|
||||
"ubuntu-x64": {
|
||||
"#import": [ "ubuntu", "debian-x64" ]
|
||||
},
|
||||
|
||||
"ubuntu.14.04": {
|
||||
"#import": [ "ubuntu" ]
|
||||
},
|
||||
"ubuntu.14.04-x64": {
|
||||
"#import": [ "ubuntu.14.04", "ubuntu-x64" ]
|
||||
},
|
||||
|
||||
"ubuntu.14.10": {
|
||||
"#import": [ "ubuntu" ]
|
||||
},
|
||||
"ubuntu.14.10-x64": {
|
||||
"#import": [ "ubuntu.14.10", "ubuntu-x64" ]
|
||||
},
|
||||
|
||||
"ubuntu.15.04": {
|
||||
"#import": [ "ubuntu" ]
|
||||
},
|
||||
"ubuntu.15.04-x64": {
|
||||
"#import": [ "ubuntu.15.04", "ubuntu-x64" ]
|
||||
},
|
||||
|
||||
"ubuntu.15.10": {
|
||||
"#import": [ "ubuntu" ]
|
||||
},
|
||||
"ubuntu.15.10-x64": {
|
||||
"#import": [ "ubuntu.15.10", "ubuntu-x64" ]
|
||||
},
|
||||
|
||||
"ubuntu.16.04": {
|
||||
"#import": [ "ubuntu" ]
|
||||
},
|
||||
"ubuntu.16.04-x64": {
|
||||
"#import": [ "ubuntu.16.04", "ubuntu-x64" ]
|
||||
},
|
||||
|
||||
"ubuntu.16.10": {
|
||||
"#import": [ "ubuntu" ]
|
||||
},
|
||||
"ubuntu.16.10-x64": {
|
||||
"#import": [ "ubuntu.16.10", "ubuntu-x64" ]
|
||||
},
|
||||
|
||||
"linuxmint.17": {
|
||||
"#import": [ "ubuntu.14.04" ]
|
||||
},
|
||||
"linuxmint.17-x64": {
|
||||
"#import": [ "linuxmint.17", "ubuntu.14.04-x64" ]
|
||||
},
|
||||
|
||||
"linuxmint.17.1": {
|
||||
"#import": [ "linuxmint.17" ]
|
||||
},
|
||||
"linuxmint.17.1-x64": {
|
||||
"#import": [ "linuxmint.17.1", "linuxmint.17-x64" ]
|
||||
},
|
||||
|
||||
"linuxmint.17.2": {
|
||||
"#import": [ "linuxmint.17.1" ]
|
||||
},
|
||||
"linuxmint.17.2-x64": {
|
||||
"#import": [ "linuxmint.17.2", "linuxmint.17.1-x64" ]
|
||||
},
|
||||
|
||||
"linuxmint.17.3": {
|
||||
"#import": [ "linuxmint.17.2" ]
|
||||
},
|
||||
"linuxmint.17.3-x64": {
|
||||
"#import": [ "linuxmint.17.3", "linuxmint.17.2-x64" ]
|
||||
},
|
||||
|
||||
"linuxmint.18": {
|
||||
"#import": [ "ubuntu.16.04" ]
|
||||
},
|
||||
"linuxmint.18-x64": {
|
||||
"#import": [ "linuxmint.18", "ubuntu.16.04-x64" ]
|
||||
},
|
||||
|
||||
"fedora": {
|
||||
"#import": [ "linux" ]
|
||||
},
|
||||
"fedora-x64": {
|
||||
"#import": [ "fedora", "linux-x64" ]
|
||||
},
|
||||
|
||||
"fedora.23": {
|
||||
"#import": [ "fedora" ]
|
||||
},
|
||||
"fedora.23-x64": {
|
||||
"#import": [ "fedora.23", "fedora-x64" ]
|
||||
},
|
||||
|
||||
"fedora.24": {
|
||||
"#import": [ "fedora" ]
|
||||
},
|
||||
"fedora.24-x64": {
|
||||
"#import": [ "fedora.24", "fedora-x64" ]
|
||||
},
|
||||
|
||||
"opensuse": {
|
||||
"#import": [ "linux" ]
|
||||
},
|
||||
"opensuse-x64": {
|
||||
"#import": [ "opensuse", "linux-x64" ]
|
||||
},
|
||||
|
||||
"opensuse.13.2": {
|
||||
"#import": [ "opensuse" ]
|
||||
},
|
||||
"opensuse.13.2-x64": {
|
||||
"#import": [ "opensuse.13.2", "opensuse-x64" ]
|
||||
},
|
||||
|
||||
"opensuse.42.1": {
|
||||
"#import": [ "opensuse" ]
|
||||
},
|
||||
"opensuse.42.1-x64": {
|
||||
"#import": [ "opensuse.42.1", "opensuse-x64" ]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -1,16 +1,8 @@
|
||||
This Microsoft .NET Library may incorporate components from the projects listed
|
||||
below. Microsoft licenses these components under the Microsoft .NET Library
|
||||
software license terms. The original copyright notices and the licenses under
|
||||
which Microsoft received such components are set forth below for informational
|
||||
purposes only. Microsoft reserves all rights not expressly granted herein,
|
||||
whether by implication, estoppel or otherwise.
|
||||
The MIT License (MIT)
|
||||
|
||||
1. .NET Core (https://github.com/dotnet/core/)
|
||||
|
||||
.NET Core
|
||||
Copyright (c) .NET Foundation and Contributors
|
||||
|
||||
The MIT License (MIT)
|
||||
All rights reserved.
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
@@ -28,4 +20,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
SOFTWARE.
|
226
packages/Microsoft.NETCore.Platforms.2.0.0/THIRD-PARTY-NOTICES.TXT
vendored
Normal file
226
packages/Microsoft.NETCore.Platforms.2.0.0/THIRD-PARTY-NOTICES.TXT
vendored
Normal file
@@ -0,0 +1,226 @@
|
||||
.NET Core uses third-party libraries or other resources that may be
|
||||
distributed under licenses different than the .NET Core software.
|
||||
|
||||
In the event that we accidentally failed to list a required notice, please
|
||||
bring it to our attention. Post an issue or email us:
|
||||
|
||||
dotnet@microsoft.com
|
||||
|
||||
The attached notices are provided for information only.
|
||||
|
||||
License notice for Slicing-by-8
|
||||
-------------------------------
|
||||
|
||||
http://sourceforge.net/projects/slicing-by-8/
|
||||
|
||||
Copyright (c) 2004-2006 Intel Corporation - All Rights Reserved
|
||||
|
||||
|
||||
This software program is licensed subject to the BSD License, available at
|
||||
http://www.opensource.org/licenses/bsd-license.html.
|
||||
|
||||
|
||||
License notice for Unicode data
|
||||
-------------------------------
|
||||
|
||||
http://www.unicode.org/copyright.html#License
|
||||
|
||||
Copyright © 1991-2017 Unicode, Inc. All rights reserved.
|
||||
Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of the Unicode data files and any associated documentation
|
||||
(the "Data Files") or Unicode software and any associated documentation
|
||||
(the "Software") to deal in the Data Files or Software
|
||||
without restriction, including without limitation the rights to use,
|
||||
copy, modify, merge, publish, distribute, and/or sell copies of
|
||||
the Data Files or Software, and to permit persons to whom the Data Files
|
||||
or Software are furnished to do so, provided that either
|
||||
(a) this copyright and permission notice appear with all copies
|
||||
of the Data Files or Software, or
|
||||
(b) this copyright and permission notice appear in associated
|
||||
Documentation.
|
||||
|
||||
THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF
|
||||
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
|
||||
WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||
NONINFRINGEMENT OF THIRD PARTY RIGHTS.
|
||||
IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS
|
||||
NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL
|
||||
DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
||||
PERFORMANCE OF THE DATA FILES OR SOFTWARE.
|
||||
|
||||
Except as contained in this notice, the name of a copyright holder
|
||||
shall not be used in advertising or otherwise to promote the sale,
|
||||
use or other dealings in these Data Files or Software without prior
|
||||
written authorization of the copyright holder.
|
||||
|
||||
License notice for Zlib
|
||||
-----------------------
|
||||
|
||||
https://github.com/madler/zlib
|
||||
http://zlib.net/zlib_license.html
|
||||
|
||||
/* zlib.h -- interface of the 'zlib' general purpose compression library
|
||||
version 1.2.11, January 15th, 2017
|
||||
|
||||
Copyright (C) 1995-2017 Jean-loup Gailly and Mark Adler
|
||||
|
||||
This software is provided 'as-is', without any express or implied
|
||||
warranty. In no event will the authors be held liable for any damages
|
||||
arising from the use of this software.
|
||||
|
||||
Permission is granted to anyone to use this software for any purpose,
|
||||
including commercial applications, and to alter it and redistribute it
|
||||
freely, subject to the following restrictions:
|
||||
|
||||
1. The origin of this software must not be misrepresented; you must not
|
||||
claim that you wrote the original software. If you use this software
|
||||
in a product, an acknowledgment in the product documentation would be
|
||||
appreciated but is not required.
|
||||
2. Altered source versions must be plainly marked as such, and must not be
|
||||
misrepresented as being the original software.
|
||||
3. This notice may not be removed or altered from any source distribution.
|
||||
|
||||
Jean-loup Gailly Mark Adler
|
||||
jloup@gzip.org madler@alumni.caltech.edu
|
||||
|
||||
*/
|
||||
|
||||
License notice for Mono
|
||||
-------------------------------
|
||||
|
||||
http://www.mono-project.com/docs/about-mono/
|
||||
|
||||
Copyright (c) .NET Foundation Contributors
|
||||
|
||||
MIT License
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the Software), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
||||
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||||
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||||
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
||||
License notice for International Organization for Standardization
|
||||
-----------------------------------------------------------------
|
||||
|
||||
Portions (C) International Organization for Standardization 1986:
|
||||
Permission to copy in any form is granted for use with
|
||||
conforming SGML systems and applications as defined in
|
||||
ISO 8879, provided this notice is included in all copies.
|
||||
|
||||
License notice for Intel
|
||||
------------------------
|
||||
|
||||
"Copyright (c) 2004-2006 Intel Corporation - All Rights Reserved
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions are met:
|
||||
|
||||
1. Redistributions of source code must retain the above copyright notice, this
|
||||
list of conditions and the following disclaimer.
|
||||
|
||||
2. Redistributions in binary form must reproduce the above copyright notice,
|
||||
this list of conditions and the following disclaimer in the documentation
|
||||
and/or other materials provided with the distribution.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
||||
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
||||
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
||||
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
License notice for Xamarin and Novell
|
||||
-------------------------------------
|
||||
|
||||
Copyright (c) 2015 Xamarin, Inc (http://www.xamarin.com)
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
||||
|
||||
Copyright (c) 2011 Novell, Inc (http://www.novell.com)
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
||||
|
||||
Third party notice for W3C
|
||||
--------------------------
|
||||
|
||||
"W3C SOFTWARE AND DOCUMENT NOTICE AND LICENSE
|
||||
Status: This license takes effect 13 May, 2015.
|
||||
This work is being provided by the copyright holders under the following license.
|
||||
License
|
||||
By obtaining and/or copying this work, you (the licensee) agree that you have read, understood, and will comply with the following terms and conditions.
|
||||
Permission to copy, modify, and distribute this work, with or without modification, for any purpose and without fee or royalty is hereby granted, provided that you include the following on ALL copies of the work or portions thereof, including modifications:
|
||||
The full text of this NOTICE in a location viewable to users of the redistributed or derivative work.
|
||||
Any pre-existing intellectual property disclaimers, notices, or terms and conditions. If none exist, the W3C Software and Document Short Notice should be included.
|
||||
Notice of any changes or modifications, through a copyright statement on the new code or document such as "This software or document includes material copied from or derived from [title and URI of the W3C document]. Copyright © [YEAR] W3C® (MIT, ERCIM, Keio, Beihang)."
|
||||
Disclaimers
|
||||
THIS WORK IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE OR DOCUMENT WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.
|
||||
COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENT.
|
||||
The name and trademarks of copyright holders may NOT be used in advertising or publicity pertaining to the work without specific, written prior permission. Title to copyright in this work will at all times remain with copyright holders."
|
||||
|
||||
License notice for Bit Twiddling Hacks
|
||||
--------------------------------------
|
||||
|
||||
Bit Twiddling Hacks
|
||||
|
||||
By Sean Eron Anderson
|
||||
seander@cs.stanford.edu
|
||||
|
||||
Individually, the code snippets here are in the public domain (unless otherwise
|
||||
noted) — feel free to use them however you please. The aggregate collection and
|
||||
descriptions are © 1997-2005 Sean Eron Anderson. The code and descriptions are
|
||||
distributed in the hope that they will be useful, but WITHOUT ANY WARRANTY and
|
||||
without even the implied warranty of merchantability or fitness for a particular
|
||||
purpose.
|
928
packages/Microsoft.NETCore.Platforms.2.0.0/runtime.json
vendored
Normal file
928
packages/Microsoft.NETCore.Platforms.2.0.0/runtime.json
vendored
Normal file
@@ -0,0 +1,928 @@
|
||||
{
|
||||
"runtimes": {
|
||||
"base": {
|
||||
},
|
||||
|
||||
"any": {
|
||||
"#import": [ "base" ]
|
||||
},
|
||||
|
||||
"android": {
|
||||
"#import": [ "any" ]
|
||||
},
|
||||
"android-arm": {
|
||||
"#import": [ "any" ]
|
||||
},
|
||||
"android-arm64": {
|
||||
"#import": [ "any" ]
|
||||
},
|
||||
|
||||
"android.21": {
|
||||
"#import": [ "android" ]
|
||||
},
|
||||
"android.21-arm": {
|
||||
"#import": [ "android.21", "android-arm" ]
|
||||
},
|
||||
"android.21-arm64": {
|
||||
"#import": [ "android.21", "android-arm64" ]
|
||||
},
|
||||
|
||||
"win": {
|
||||
"#import": [ "any" ]
|
||||
},
|
||||
"win-x86": {
|
||||
"#import": [ "win" ]
|
||||
},
|
||||
"win-x64": {
|
||||
"#import": [ "win" ]
|
||||
},
|
||||
"win-arm": {
|
||||
"#import": [ "win" ]
|
||||
},
|
||||
"win-arm64": {
|
||||
"#import": [ "win" ]
|
||||
},
|
||||
|
||||
"win7": {
|
||||
"#import": [ "win" ]
|
||||
},
|
||||
"win7-x86": {
|
||||
"#import": [ "win7", "win-x86" ]
|
||||
},
|
||||
"win7-x64": {
|
||||
"#import": [ "win7", "win-x64" ]
|
||||
},
|
||||
|
||||
"win8": {
|
||||
"#import": [ "win7" ]
|
||||
},
|
||||
"win8-x86": {
|
||||
"#import": [ "win8", "win7-x86" ]
|
||||
},
|
||||
"win8-x64": {
|
||||
"#import": [ "win8", "win7-x64" ]
|
||||
},
|
||||
"win8-arm": {
|
||||
"#import": [ "win8", "win-arm" ]
|
||||
},
|
||||
|
||||
"win81": {
|
||||
"#import": [ "win8" ]
|
||||
},
|
||||
"win81-x86": {
|
||||
"#import": [ "win81", "win8-x86" ]
|
||||
},
|
||||
"win81-x64": {
|
||||
"#import": [ "win81", "win8-x64" ]
|
||||
},
|
||||
"win81-arm": {
|
||||
"#import": [ "win81", "win8-arm" ]
|
||||
},
|
||||
|
||||
"win10": {
|
||||
"#import": [ "win81" ]
|
||||
},
|
||||
"win10-x86": {
|
||||
"#import": [ "win10", "win81-x86" ]
|
||||
},
|
||||
"win10-x64": {
|
||||
"#import": [ "win10", "win81-x64" ]
|
||||
},
|
||||
"win10-arm": {
|
||||
"#import": [ "win10", "win81-arm" ]
|
||||
},
|
||||
"win10-arm64": {
|
||||
"#import": [ "win10", "win-arm64" ]
|
||||
},
|
||||
|
||||
"aot": {
|
||||
"#import": [ "any" ]
|
||||
},
|
||||
|
||||
"win-aot": {
|
||||
"#import": [ "win", "aot" ]
|
||||
},
|
||||
"win-x86-aot": {
|
||||
"#import": [ "win-aot", "win-x86" ]
|
||||
},
|
||||
"win-x64-aot": {
|
||||
"#import": [ "win-aot", "win-x64" ]
|
||||
},
|
||||
|
||||
"win7-aot": {
|
||||
"#import": [ "win-aot", "win7" ]
|
||||
},
|
||||
"win7-x86-aot": {
|
||||
"#import": [ "win7-aot", "win7-x86" ]
|
||||
},
|
||||
"win7-x64-aot": {
|
||||
"#import": [ "win7-aot", "win7-x64" ]
|
||||
},
|
||||
|
||||
"win8-aot": {
|
||||
"#import": [ "win8", "win7-aot" ]
|
||||
},
|
||||
"win8-x86-aot": {
|
||||
"#import": [ "win8-aot", "win8-x86", "win7-x86-aot" ]
|
||||
},
|
||||
"win8-x64-aot": {
|
||||
"#import": [ "win8-aot", "win8-x64", "win7-x64-aot" ]
|
||||
},
|
||||
"win8-arm-aot": {
|
||||
"#import": [ "win8-aot", "win8-arm" ]
|
||||
},
|
||||
|
||||
"win81-aot": {
|
||||
"#import": [ "win81", "win8-aot" ]
|
||||
},
|
||||
"win81-x86-aot": {
|
||||
"#import": [ "win81-aot", "win81-x86", "win8-x86-aot" ]
|
||||
},
|
||||
"win81-x64-aot": {
|
||||
"#import": [ "win81-aot", "win81-x64", "win8-x64-aot" ]
|
||||
},
|
||||
"win81-arm-aot": {
|
||||
"#import": [ "win81-aot", "win81-arm", "win8-arm-aot" ]
|
||||
},
|
||||
|
||||
"win10-aot": {
|
||||
"#import": [ "win10", "win81-aot" ]
|
||||
},
|
||||
"win10-x86-aot": {
|
||||
"#import": [ "win10-aot", "win10-x86", "win81-x86-aot" ]
|
||||
},
|
||||
"win10-x64-aot": {
|
||||
"#import": [ "win10-aot", "win10-x64", "win81-x64-aot" ]
|
||||
},
|
||||
"win10-arm-aot": {
|
||||
"#import": [ "win10-aot", "win10-arm", "win81-arm-aot" ]
|
||||
},
|
||||
"win10-arm64-aot": {
|
||||
"#import": [ "win10-aot", "win10-arm64" ]
|
||||
},
|
||||
|
||||
"unix": {
|
||||
"#import": [ "any" ]
|
||||
},
|
||||
"unix-x64": {
|
||||
"#import": [ "unix" ]
|
||||
},
|
||||
"unix-x86": {
|
||||
"#import": [ "unix" ]
|
||||
},
|
||||
"unix-arm": {
|
||||
"#import": [ "unix" ]
|
||||
},
|
||||
"unix-armel": {
|
||||
"#import": [ "unix" ]
|
||||
},
|
||||
"unix-arm64": {
|
||||
"#import": [ "unix" ]
|
||||
},
|
||||
|
||||
"osx": {
|
||||
"#import": [ "unix" ]
|
||||
},
|
||||
"osx-x64": {
|
||||
"#import": [ "osx", "unix-x64" ]
|
||||
},
|
||||
|
||||
"osx.10.10": {
|
||||
"#import": [ "osx" ]
|
||||
},
|
||||
"osx.10.10-x64": {
|
||||
"#import": [ "osx.10.10", "osx-x64" ]
|
||||
},
|
||||
|
||||
"osx.10.11": {
|
||||
"#import": [ "osx.10.10" ]
|
||||
},
|
||||
"osx.10.11-x64": {
|
||||
"#import": [ "osx.10.11", "osx.10.10-x64" ]
|
||||
},
|
||||
|
||||
"osx.10.12": {
|
||||
"#import": [ "osx.10.11" ]
|
||||
},
|
||||
"osx.10.12-x64": {
|
||||
"#import": [ "osx.10.12", "osx.10.11-x64" ]
|
||||
},
|
||||
|
||||
"linux": {
|
||||
"#import": [ "unix" ]
|
||||
},
|
||||
"linux-x64": {
|
||||
"#import": [ "linux", "unix-x64" ]
|
||||
},
|
||||
"linux-x86": {
|
||||
"#import": [ "linux", "unix-x86" ]
|
||||
},
|
||||
"linux-arm": {
|
||||
"#import": [ "linux", "unix-arm" ]
|
||||
},
|
||||
"linux-armel": {
|
||||
"#import": [ "linux", "unix-armel" ]
|
||||
},
|
||||
"linux-arm64": {
|
||||
"#import": [ "linux", "unix-arm64" ]
|
||||
},
|
||||
|
||||
"rhel": {
|
||||
"#import": [ "linux" ]
|
||||
},
|
||||
"rhel-x64": {
|
||||
"#import": [ "rhel", "linux-x64" ]
|
||||
},
|
||||
|
||||
"rhel.7": {
|
||||
"#import": [ "rhel" ]
|
||||
},
|
||||
"rhel.7-x64": {
|
||||
"#import": [ "rhel.7", "rhel-x64" ]
|
||||
},
|
||||
|
||||
"rhel.7.0": {
|
||||
"#import": [ "rhel.7" ]
|
||||
},
|
||||
"rhel.7.0-x64": {
|
||||
"#import": [ "rhel.7.0", "rhel.7-x64" ]
|
||||
},
|
||||
|
||||
"rhel.7.1": {
|
||||
"#import": [ "rhel.7.0" ]
|
||||
},
|
||||
"rhel.7.1-x64": {
|
||||
"#import": [ "rhel.7.1", "rhel.7.0-x64" ]
|
||||
},
|
||||
|
||||
"rhel.7.2": {
|
||||
"#import": [ "rhel.7.1" ]
|
||||
},
|
||||
"rhel.7.2-x64": {
|
||||
"#import": [ "rhel.7.2", "rhel.7.1-x64" ]
|
||||
},
|
||||
|
||||
"rhel.7.3": {
|
||||
"#import": [ "rhel.7.2" ]
|
||||
},
|
||||
"rhel.7.3-x64": {
|
||||
"#import": [ "rhel.7.3", "rhel.7.2-x64" ]
|
||||
},
|
||||
|
||||
"rhel.7.4": {
|
||||
"#import": [ "rhel.7.3" ]
|
||||
},
|
||||
"rhel.7.4-x64": {
|
||||
"#import": [ "rhel.7.4", "rhel.7.3-x64" ]
|
||||
},
|
||||
|
||||
"ol": {
|
||||
"#import": [ "rhel" ]
|
||||
},
|
||||
"ol-x64": {
|
||||
"#import": [ "ol", "rhel-x64" ]
|
||||
},
|
||||
|
||||
"ol.7": {
|
||||
"#import": [ "ol", "rhel.7" ]
|
||||
},
|
||||
"ol.7-x64": {
|
||||
"#import": [ "ol.7", "ol-x64", "rhel.7-x64" ]
|
||||
},
|
||||
|
||||
"ol.7.0": {
|
||||
"#import": [ "ol.7", "rhel.7.0" ]
|
||||
},
|
||||
"ol.7.0-x64": {
|
||||
"#import": [ "ol.7.0", "ol.7-x64", "rhel.7.0-x64" ]
|
||||
},
|
||||
|
||||
"ol.7.1": {
|
||||
"#import": [ "ol.7.0", "rhel.7.1" ]
|
||||
},
|
||||
"ol.7.1-x64": {
|
||||
"#import": [ "ol.7.1", "ol.7.0-x64", "rhel.7.1-x64" ]
|
||||
},
|
||||
|
||||
"ol.7.2": {
|
||||
"#import": [ "ol.7.1", "rhel.7.2" ]
|
||||
},
|
||||
"ol.7.2-x64": {
|
||||
"#import": [ "ol.7.2", "ol.7.1-x64", "rhel.7.2-x64" ]
|
||||
},
|
||||
|
||||
"centos": {
|
||||
"#import": [ "rhel" ]
|
||||
},
|
||||
"centos-x64": {
|
||||
"#import": [ "centos", "rhel-x64" ]
|
||||
},
|
||||
|
||||
"centos.7": {
|
||||
"#import": [ "centos", "rhel.7" ]
|
||||
},
|
||||
"centos.7-x64": {
|
||||
"#import": [ "centos.7", "centos-x64", "rhel.7-x64" ]
|
||||
},
|
||||
|
||||
"debian": {
|
||||
"#import": [ "linux" ]
|
||||
},
|
||||
"debian-x64": {
|
||||
"#import": [ "debian", "linux-x64" ]
|
||||
},
|
||||
"debian-x86": {
|
||||
"#import": [ "debian", "linux-x86" ]
|
||||
},
|
||||
"debian-arm": {
|
||||
"#import": [ "debian", "linux-arm" ]
|
||||
},
|
||||
"debian-armel": {
|
||||
"#import": [ "debian", "linux-armel" ]
|
||||
},
|
||||
"debian-arm64": {
|
||||
"#import": [ "debian", "linux-arm64" ]
|
||||
},
|
||||
|
||||
"debian.8": {
|
||||
"#import": [ "debian" ]
|
||||
},
|
||||
"debian.8-x64": {
|
||||
"#import": [ "debian.8", "debian-x64" ]
|
||||
},
|
||||
"debian.8-x86": {
|
||||
"#import": [ "debian.8", "debian-x86" ]
|
||||
},
|
||||
"debian.8-arm": {
|
||||
"#import": [ "debian.8", "debian-arm" ]
|
||||
},
|
||||
"debian.8-armel": {
|
||||
"#import": [ "debian.8", "debian-armel" ]
|
||||
},
|
||||
"debian.8-arm64": {
|
||||
"#import": [ "debian.8", "debian-arm64" ]
|
||||
},
|
||||
|
||||
"tizen": {
|
||||
"#import": [ "linux" ]
|
||||
},
|
||||
"tizen-armel": {
|
||||
"#import": [ "tizen", "linux-armel" ]
|
||||
},
|
||||
"tizen.4.0.0-armel": {
|
||||
"#import": [ "tizen.4.0.0", "tizen-armel" ]
|
||||
},
|
||||
|
||||
"ubuntu": {
|
||||
"#import": [ "debian" ]
|
||||
},
|
||||
|
||||
"ubuntu-x64": {
|
||||
"#import": [ "ubuntu", "debian-x64" ]
|
||||
},
|
||||
|
||||
"ubuntu-x86": {
|
||||
"#import": [ "ubuntu", "debian-x86" ]
|
||||
},
|
||||
|
||||
"ubuntu-arm": {
|
||||
"#import": [ "ubuntu", "debian-arm" ]
|
||||
},
|
||||
|
||||
"ubuntu-arm64": {
|
||||
"#import": [ "ubuntu", "debian-arm64" ]
|
||||
},
|
||||
|
||||
"ubuntu.14.04": {
|
||||
"#import": [ "ubuntu" ]
|
||||
},
|
||||
"ubuntu.14.04-x64": {
|
||||
"#import": [ "ubuntu.14.04", "ubuntu-x64" ]
|
||||
},
|
||||
"ubuntu.14.04-x86": {
|
||||
"#import": [ "ubuntu.14.04", "ubuntu-x86" ]
|
||||
},
|
||||
"ubuntu.14.04-arm": {
|
||||
"#import": [ "ubuntu.14.04", "ubuntu-arm" ]
|
||||
},
|
||||
|
||||
"ubuntu.14.10": {
|
||||
"#import": [ "ubuntu" ]
|
||||
},
|
||||
"ubuntu.14.10-x64": {
|
||||
"#import": [ "ubuntu.14.10", "ubuntu-x64" ]
|
||||
},
|
||||
"ubuntu.14.10-x86": {
|
||||
"#import": [ "ubuntu.14.10", "ubuntu-x86" ]
|
||||
},
|
||||
"ubuntu.14.10-arm": {
|
||||
"#import": [ "ubuntu.14.10", "ubuntu-arm" ]
|
||||
},
|
||||
|
||||
"ubuntu.15.04": {
|
||||
"#import": [ "ubuntu" ]
|
||||
},
|
||||
"ubuntu.15.04-x64": {
|
||||
"#import": [ "ubuntu.15.04", "ubuntu-x64" ]
|
||||
},
|
||||
"ubuntu.15.04-x86": {
|
||||
"#import": [ "ubuntu.15.04", "ubuntu-x86" ]
|
||||
},
|
||||
"ubuntu.15.04-arm": {
|
||||
"#import": [ "ubuntu.15.04", "ubuntu-arm" ]
|
||||
},
|
||||
|
||||
"ubuntu.15.10": {
|
||||
"#import": [ "ubuntu" ]
|
||||
},
|
||||
"ubuntu.15.10-x64": {
|
||||
"#import": [ "ubuntu.15.10", "ubuntu-x64" ]
|
||||
},
|
||||
"ubuntu.15.10-x86": {
|
||||
"#import": [ "ubuntu.15.10", "ubuntu-x86" ]
|
||||
},
|
||||
"ubuntu.15.10-arm": {
|
||||
"#import": [ "ubuntu.15.10", "ubuntu-arm" ]
|
||||
},
|
||||
|
||||
"ubuntu.16.04": {
|
||||
"#import": [ "ubuntu" ]
|
||||
},
|
||||
"ubuntu.16.04-x64": {
|
||||
"#import": [ "ubuntu.16.04", "ubuntu-x64" ]
|
||||
},
|
||||
"ubuntu.16.04-x86": {
|
||||
"#import": [ "ubuntu.16.04", "ubuntu-x86" ]
|
||||
},
|
||||
"ubuntu.16.04-arm": {
|
||||
"#import": [ "ubuntu.16.04", "ubuntu-arm" ]
|
||||
},
|
||||
"ubuntu.16.04-arm64": {
|
||||
"#import": [ "ubuntu.16.04", "ubuntu-arm64" ]
|
||||
},
|
||||
|
||||
"ubuntu.16.10": {
|
||||
"#import": [ "ubuntu" ]
|
||||
},
|
||||
"ubuntu.16.10-x64": {
|
||||
"#import": [ "ubuntu.16.10", "ubuntu-x64" ]
|
||||
},
|
||||
"ubuntu.16.10-x86": {
|
||||
"#import": [ "ubuntu.16.10", "ubuntu-x86" ]
|
||||
},
|
||||
"ubuntu.16.10-arm": {
|
||||
"#import": [ "ubuntu.16.10", "ubuntu-arm" ]
|
||||
},
|
||||
"ubuntu.16.10-arm64": {
|
||||
"#import": [ "ubuntu.16.10", "ubuntu-arm64" ]
|
||||
},
|
||||
|
||||
"linuxmint.17": {
|
||||
"#import": [ "ubuntu.14.04" ]
|
||||
},
|
||||
"linuxmint.17-x64": {
|
||||
"#import": [ "linuxmint.17", "ubuntu.14.04-x64" ]
|
||||
},
|
||||
|
||||
"linuxmint.17.1": {
|
||||
"#import": [ "linuxmint.17" ]
|
||||
},
|
||||
"linuxmint.17.1-x64": {
|
||||
"#import": [ "linuxmint.17.1", "linuxmint.17-x64" ]
|
||||
},
|
||||
|
||||
"linuxmint.17.2": {
|
||||
"#import": [ "linuxmint.17.1" ]
|
||||
},
|
||||
"linuxmint.17.2-x64": {
|
||||
"#import": [ "linuxmint.17.2", "linuxmint.17.1-x64" ]
|
||||
},
|
||||
|
||||
"linuxmint.17.3": {
|
||||
"#import": [ "linuxmint.17.2" ]
|
||||
},
|
||||
"linuxmint.17.3-x64": {
|
||||
"#import": [ "linuxmint.17.3", "linuxmint.17.2-x64" ]
|
||||
},
|
||||
|
||||
"linuxmint.18": {
|
||||
"#import": [ "ubuntu.16.04" ]
|
||||
},
|
||||
"linuxmint.18-x64": {
|
||||
"#import": [ "linuxmint.18", "ubuntu.16.04-x64" ]
|
||||
},
|
||||
"linuxmint.18.1": {
|
||||
"#import": [ "linuxmint.18" ]
|
||||
},
|
||||
"linuxmint.18.1-x64": {
|
||||
"#import": [ "linuxmint.18.1", "linuxmint.18-x64" ]
|
||||
},
|
||||
|
||||
"fedora": {
|
||||
"#import": [ "linux" ]
|
||||
},
|
||||
"fedora-x64": {
|
||||
"#import": [ "fedora", "linux-x64" ]
|
||||
},
|
||||
|
||||
"fedora.23": {
|
||||
"#import": [ "fedora" ]
|
||||
},
|
||||
"fedora.23-x64": {
|
||||
"#import": [ "fedora.23", "fedora-x64" ]
|
||||
},
|
||||
|
||||
"fedora.24": {
|
||||
"#import": [ "fedora" ]
|
||||
},
|
||||
"fedora.24-x64": {
|
||||
"#import": [ "fedora.24", "fedora-x64" ]
|
||||
},
|
||||
|
||||
"fedora.25": {
|
||||
"#import": [ "fedora" ]
|
||||
},
|
||||
"fedora.25-x64": {
|
||||
"#import": [ "fedora.25", "fedora-x64" ]
|
||||
},
|
||||
|
||||
"fedora.26": {
|
||||
"#import": [ "fedora" ]
|
||||
},
|
||||
"fedora.26-x64": {
|
||||
"#import": [ "fedora.26", "fedora-x64" ]
|
||||
},
|
||||
|
||||
"opensuse": {
|
||||
"#import": [ "linux" ]
|
||||
},
|
||||
"opensuse-x64": {
|
||||
"#import": [ "opensuse", "linux-x64" ]
|
||||
},
|
||||
|
||||
"opensuse.13.2": {
|
||||
"#import": [ "opensuse" ]
|
||||
},
|
||||
"opensuse.13.2-x64": {
|
||||
"#import": [ "opensuse.13.2", "opensuse-x64" ]
|
||||
},
|
||||
|
||||
"opensuse.42.1": {
|
||||
"#import": [ "opensuse" ]
|
||||
},
|
||||
"opensuse.42.1-x64": {
|
||||
"#import": [ "opensuse.42.1", "opensuse-x64" ]
|
||||
},
|
||||
|
||||
"corert": {
|
||||
"#import": [ "any" ]
|
||||
},
|
||||
|
||||
"win-corert": {
|
||||
"#import": [ "corert", "win" ]
|
||||
},
|
||||
"win-x86-corert": {
|
||||
"#import": [ "win-corert", "win-x86" ]
|
||||
},
|
||||
"win-x64-corert": {
|
||||
"#import": [ "win-corert", "win-x64" ]
|
||||
},
|
||||
|
||||
"win7-corert": {
|
||||
"#import": [ "win-corert", "win7" ]
|
||||
},
|
||||
"win7-x86-corert": {
|
||||
"#import": [ "win7-corert", "win7-x86" ]
|
||||
},
|
||||
"win7-x64-corert": {
|
||||
"#import": [ "win7-corert", "win7-x64" ]
|
||||
},
|
||||
|
||||
"win8-corert": {
|
||||
"#import": [ "win7-corert", "win8" ]
|
||||
},
|
||||
"win8-x86-corert": {
|
||||
"#import": [ "win8-corert", "win7-x86-corert", "win8-x86" ]
|
||||
},
|
||||
"win8-x64-corert": {
|
||||
"#import": [ "win8-corert", "win7-x64-corert", "win8-x64" ]
|
||||
},
|
||||
"win8-arm-corert": {
|
||||
"#import": [ "win8-corert", "win8-arm" ]
|
||||
},
|
||||
|
||||
"win81-corert": {
|
||||
"#import": [ "win8-corert", "win81" ]
|
||||
},
|
||||
"win81-x86-corert": {
|
||||
"#import": [ "win81-corert", "win8-x86-corert", "win81-x86" ]
|
||||
},
|
||||
"win81-x64-corert": {
|
||||
"#import": [ "win81-corert", "win8-x64-corert", "win81-x64" ]
|
||||
},
|
||||
"win81-arm-corert": {
|
||||
"#import": [ "win81-corert", "win8-arm-corert", "win81-arm" ]
|
||||
},
|
||||
|
||||
"win10-corert": {
|
||||
"#import": [ "win81-corert", "win10" ]
|
||||
},
|
||||
"win10-x86-corert": {
|
||||
"#import": [ "win10-corert", "win81-x86-corert", "win10-x86" ]
|
||||
},
|
||||
"win10-x64-corert": {
|
||||
"#import": [ "win10-corert", "win81-x64-corert", "win10-x64" ]
|
||||
},
|
||||
"win10-arm-corert": {
|
||||
"#import": [ "win10-corert", "win81-arm-corert", "win10-arm" ]
|
||||
},
|
||||
"win10-arm64-corert": {
|
||||
"#import": [ "win10-corert", "win10-arm64" ]
|
||||
},
|
||||
|
||||
"unix-corert": {
|
||||
"#import": [ "corert", "unix" ]
|
||||
},
|
||||
"unix-x64-corert": {
|
||||
"#import": [ "unix-corert", "unix-x64" ]
|
||||
},
|
||||
"unix-arm-corert": {
|
||||
"#import": [ "unix-corert", "unix-arm" ]
|
||||
},
|
||||
"unix-arm64-corert": {
|
||||
"#import": [ "unix-corert", "unix-arm64" ]
|
||||
},
|
||||
|
||||
"osx-corert": {
|
||||
"#import": [ "unix-corert", "osx" ]
|
||||
},
|
||||
"osx-x64-corert": {
|
||||
"#import": [ "osx-corert", "unix-x64-corert", "osx-x64" ]
|
||||
},
|
||||
|
||||
"osx.10.10-corert": {
|
||||
"#import": [ "osx-corert", "osx.10.10" ]
|
||||
},
|
||||
"osx.10.10-x64-corert": {
|
||||
"#import": [ "osx.10.10-corert", "osx-x64-corert", "osx.10.10-x64" ]
|
||||
},
|
||||
|
||||
"osx.10.11-corert": {
|
||||
"#import": [ "osx.10.10-corert", "osx.10.11" ]
|
||||
},
|
||||
"osx.10.11-x64-corert": {
|
||||
"#import": [ "osx.10.11-corert", "osx.10.10-x64-corert", "osx.10.11-x64" ]
|
||||
},
|
||||
|
||||
"osx.10.12-corert": {
|
||||
"#import": [ "osx.10.11-corert", "osx.10.12" ]
|
||||
},
|
||||
"osx.10.12-x64-corert": {
|
||||
"#import": [ "osx.10.12-corert", "osx.10.11-x64-corert", "osx.10.12-x64" ]
|
||||
},
|
||||
|
||||
"linux-corert": {
|
||||
"#import": [ "corert", "linux", "unix-corert" ]
|
||||
},
|
||||
"linux-x64-corert": {
|
||||
"#import": [ "linux-corert", "linux-x64" ]
|
||||
},
|
||||
"linux-arm-corert": {
|
||||
"#import": [ "linux-corert", "linux-arm" ]
|
||||
},
|
||||
"linux-arm64-corert": {
|
||||
"#import": [ "linux-corert", "linux-arm64" ]
|
||||
},
|
||||
|
||||
"rhel-corert": {
|
||||
"#import": [ "corert", "rhel" ]
|
||||
},
|
||||
"rhel-x64-corert": {
|
||||
"#import": [ "rhel-corert", "linux-x64-corert", "rhel-x64" ]
|
||||
},
|
||||
|
||||
"rhel.7-corert": {
|
||||
"#import": [ "rhel-corert", "rhel.7" ]
|
||||
},
|
||||
"rhel.7-x64-corert": {
|
||||
"#import": [ "rhel.7-corert", "rhel-x64-corert", "rhel.7-x64" ]
|
||||
},
|
||||
|
||||
"rhel.7.0-corert": {
|
||||
"#import": [ "rhel.7-corert", "rhel.7.0" ]
|
||||
},
|
||||
"rhel.7.0-x64-corert": {
|
||||
"#import": [ "rhel.7.0-corert", "rhel.7-x64-corert", "rhel.7.0-x64" ]
|
||||
},
|
||||
|
||||
"rhel.7.1-corert": {
|
||||
"#import": [ "rhel.7.0-corert", "rhel.7.1" ]
|
||||
},
|
||||
"rhel.7.1-x64-corert": {
|
||||
"#import": [ "rhel.7.1-corert", "rhel.7.0-x64-corert", "rhel.7.1-x64" ]
|
||||
},
|
||||
|
||||
"rhel.7.2-corert": {
|
||||
"#import": [ "rhel.7.1-corert", "rhel.7.2" ]
|
||||
},
|
||||
"rhel.7.2-x64-corert": {
|
||||
"#import": [ "rhel.7.2-corert", "rhel.7.1-x64-corert", "rhel.7.2-x64" ]
|
||||
},
|
||||
|
||||
"ol-corert": {
|
||||
"#import": [ "rhel-corert", "ol" ]
|
||||
},
|
||||
"ol-x64-corert": {
|
||||
"#import": [ "ol-corert", "rhel-x64-corert", "ol-x64" ]
|
||||
},
|
||||
|
||||
"ol.7-corert": {
|
||||
"#import": [ "ol-corert", "ol.7" ]
|
||||
},
|
||||
"ol.7-x64-corert": {
|
||||
"#import": [ "ol.7-corert", "rhel.7-x64-corert", "ol.7-x64" ]
|
||||
},
|
||||
|
||||
"ol.7.0-corert": {
|
||||
"#import": [ "ol.7-corert", "ol.7.0" ]
|
||||
},
|
||||
"ol.7.0-x64-corert": {
|
||||
"#import": [ "ol.7.0-corert", "rhel.7.0-corert", "ol.7.0-x64" ]
|
||||
},
|
||||
|
||||
"ol.7.1-corert": {
|
||||
"#import": [ "ol.7.0-corert", "ol.7.1" ]
|
||||
},
|
||||
"ol.7.1-x64-corert": {
|
||||
"#import": [ "ol.7.1-corert", "rhel.7.1-x64-corert", "ol.7.1-x64" ]
|
||||
},
|
||||
|
||||
"centos-corert": {
|
||||
"#import": [ "rel-corert", "centos" ]
|
||||
},
|
||||
"centos-x64-corert": {
|
||||
"#import": [ "centos-corert", "rhel-x64-corert", "centos-x64" ]
|
||||
},
|
||||
|
||||
"centos.7-corert": {
|
||||
"#import": [ "centos-corert", "centos.7" ]
|
||||
},
|
||||
"centos.7-x64-corert": {
|
||||
"#import": [ "centos.7-corert", "centos-x64-corert", "centos.7-x64" ]
|
||||
},
|
||||
|
||||
"debian-corert": {
|
||||
"#import": [ "linux-corert", "debian" ]
|
||||
},
|
||||
"debian-x64-corert": {
|
||||
"#import": [ "debian-corert", "linux-x64-corert", "debian-x64" ]
|
||||
},
|
||||
"debian-arm-corert": {
|
||||
"#import": [ "debian-corert", "debian-arm" ]
|
||||
},
|
||||
"debian-arm64-corert": {
|
||||
"#import": [ "debian-corert", "debian-arm64" ]
|
||||
},
|
||||
|
||||
"debian.8-corert": {
|
||||
"#import": [ "debian-corert", "debian.8" ]
|
||||
},
|
||||
"debian.8-x64-corert": {
|
||||
"#import": [ "debian.8-corert", "debian-x64-corert", "debian.8-x64" ]
|
||||
},
|
||||
"debian.8-arm-corert": {
|
||||
"#import": [ "debian.8-corert", "debian-arm-corert", "debian.8-arm" ]
|
||||
},
|
||||
"debian.8-arm64-corert": {
|
||||
"#import": [ "debian.8-corert", "debian-arm64-corert", "debian.8-arm64" ]
|
||||
},
|
||||
|
||||
"ubuntu-corert": {
|
||||
"#import": [ "debian-corert", "ubuntu" ]
|
||||
},
|
||||
|
||||
"ubuntu-x64-corert": {
|
||||
"#import": [ "ubuntu-corert", "debian-x64-corert", "ubuntu-x64" ]
|
||||
},
|
||||
|
||||
"ubuntu.14.04-corert": {
|
||||
"#import": [ "ubuntu-corert", "ubuntu.14.06" ]
|
||||
},
|
||||
"ubuntu.14.04-x64-corert": {
|
||||
"#import": [ "ubuntu.14.04-corert", "ubuntu-x64-corert", "ubuntu-14.04-x64" ]
|
||||
},
|
||||
|
||||
"ubuntu.14.10-corert": {
|
||||
"#import": [ "ubuntu.14.04-corert", "ubuntu-14.10" ]
|
||||
},
|
||||
"ubuntu.14.10-x64-corert": {
|
||||
"#import": [ "ubuntu.14.10-corert", "ubuntu.14.04-x64-corert", "ubuntu.14.10-x64" ]
|
||||
},
|
||||
|
||||
"ubuntu.15.04-corert": {
|
||||
"#import": [ "ubuntu.14.10-corert", "ubuntu-15.04" ]
|
||||
},
|
||||
"ubuntu.15.04-x64-corert": {
|
||||
"#import": [ "ubuntu.15.04-corert", "ubuntu.14.10-x64-corert", "ubuntu.15.04-x64" ]
|
||||
},
|
||||
|
||||
"ubuntu.15.10-corert": {
|
||||
"#import": [ "ubuntu.15.04-corert", "ubuntu-15.10" ]
|
||||
},
|
||||
"ubuntu.15.10-x64-corert": {
|
||||
"#import": [ "ubuntu.15.10-corert", "ubuntu.15.04-x64-corert", "ubuntu.15.10-x64" ]
|
||||
},
|
||||
|
||||
"ubuntu.16.04-corert": {
|
||||
"#import": [ "ubuntu.15.10-corert", "ubuntu-16.04" ]
|
||||
},
|
||||
"ubuntu.16.04-x64-corert": {
|
||||
"#import": [ "ubuntu.16.04-corert", "ubuntu.15.10-x64-corert", "ubuntu.16.04-x64" ]
|
||||
},
|
||||
|
||||
"ubuntu.16.10-corert": {
|
||||
"#import": [ "ubuntu.16.04-corert", "ubuntu.16.10" ]
|
||||
},
|
||||
"ubuntu.16.10-x64-corert": {
|
||||
"#import": [ "ubuntu.16.10-corert", "ubuntu.16.04-x64-corert", "ubuntu.16.10-x64" ]
|
||||
},
|
||||
|
||||
"linuxmint.17-corert": {
|
||||
"#import": [ "ubuntu.14.04-corert", "linuxmint.17" ]
|
||||
},
|
||||
"linuxmint.17-x64-corert": {
|
||||
"#import": [ "linuxmint.17-corert", "ubuntu.14.04-x64-corert", "linuxmint.17-x64" ]
|
||||
},
|
||||
|
||||
"linuxmint.17.1-corert": {
|
||||
"#import": [ "linuxmint.17-corert", "linuxmint.17.1" ]
|
||||
},
|
||||
"linuxmint.17.1-x64-corert": {
|
||||
"#import": [ "linuxmint.17.1-corert", "linuxmint.17-x64-corert", "linuxmint.17.1-x64" ]
|
||||
},
|
||||
|
||||
"linuxmint.17.2-corert": {
|
||||
"#import": [ "linuxmint.17.1-corert", "linuxmint.17.2" ]
|
||||
},
|
||||
"linuxmint.17.2-x64-corert": {
|
||||
"#import": [ "linuxmint.17.2-corert", "linuxmint.17.1-x64-corert", "linuxmint.17.2-x64" ]
|
||||
},
|
||||
|
||||
"linuxmint.17.3-corert": {
|
||||
"#import": [ "linuxmint.17.2-corert", "linuxmint.17.3" ]
|
||||
},
|
||||
"linuxmint.17.3-x64-corert": {
|
||||
"#import": [ "linuxmint.17.3-corert", "linuxmint.17.2-x64-corert", "linuxmint.17.3-x64" ]
|
||||
},
|
||||
|
||||
"linuxmint.18-corert": {
|
||||
"#import": [ "ubuntu.16.04-corert", "linuxmint.18" ]
|
||||
},
|
||||
"linuxmint.18-x64-corert": {
|
||||
"#import": [ "linuxmint.18-corert", "ubuntu.16.04-x64-corert", "linuxmint.18-x64" ]
|
||||
},
|
||||
|
||||
"fedora-corert": {
|
||||
"#import": [ "linux-corert", "fedora" ]
|
||||
},
|
||||
"fedora-x64-corert": {
|
||||
"#import": [ "fedora-corert", "linux-x64-corert", "fedora-x64" ]
|
||||
},
|
||||
|
||||
"fedora.23-corert": {
|
||||
"#import": [ "fedora-corert", "fedora.23" ]
|
||||
},
|
||||
"fedora.23-x64-corert": {
|
||||
"#import": [ "fedora.23-corert", "fedora-x64-corert", "fedora.23-x64" ]
|
||||
},
|
||||
|
||||
"fedora.24-corert": {
|
||||
"#import": [ "fedora.23-corert", "fedora.24" ]
|
||||
},
|
||||
"fedora.24-x64-corert": {
|
||||
"#import": [ "fedora.24-corert", "fedora.23-x64-corert", "fedora.24-x64" ]
|
||||
},
|
||||
|
||||
"opensuse-corert": {
|
||||
"#import": [ "linux-corert", "opensuse" ]
|
||||
},
|
||||
"opensuse-x64-corert": {
|
||||
"#import": [ "opensuse-corert", "linux-x64-corert", "opensuste-x64" ]
|
||||
},
|
||||
|
||||
"opensuse.13.2-corert": {
|
||||
"#import": [ "opensuse-corert", "opensuse.13.2" ]
|
||||
},
|
||||
"opensuse.13.2-x64-corert": {
|
||||
"#import": [ "opensuse.13.2-corert", "opensuse-x64-corert", "opensuse.13.2-x64" ]
|
||||
},
|
||||
|
||||
"opensuse.42.1-corert": {
|
||||
"#import": [ "opensuse.13.2-corert", "opensuse.42.1" ]
|
||||
},
|
||||
"opensuse.42.1-x64-corert": {
|
||||
"#import": [ "opensuse.42.1-corert", "opensuse.13.2-x64-corert", "opensuse.42.1-x64" ]
|
||||
},
|
||||
|
||||
}
|
||||
}
|
0
packages/Microsoft.NETCore.Platforms.2.0.0/useSharedDesignerContext.txt
vendored
Normal file
0
packages/Microsoft.NETCore.Platforms.2.0.0/useSharedDesignerContext.txt
vendored
Normal file
1
packages/Microsoft.NETCore.Platforms.2.0.0/version.txt
vendored
Normal file
1
packages/Microsoft.NETCore.Platforms.2.0.0/version.txt
vendored
Normal file
@@ -0,0 +1 @@
|
||||
8321c729934c0f8be754953439b88e6e1c120c24
|
BIN
packages/ModernKeePassLib.2.19.0.26202/lib/netstandard1.2/ModernKeePassLib.dll
vendored
Normal file
BIN
packages/ModernKeePassLib.2.19.0.26202/lib/netstandard1.2/ModernKeePassLib.dll
vendored
Normal file
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user