Dodano edycje danych osoby - Zmodyfikowano User.cs, DetailedViewModel.cs, DetailedPage.xaml oraz MainPage.xaml
This commit is contained in:
+39
-3
@@ -1,7 +1,43 @@
|
||||
using System.ComponentModel;
|
||||
namespace Navigation_Between.Model;
|
||||
public class User : INotifyPropertyChanged
|
||||
{
|
||||
private string description;
|
||||
private string email;
|
||||
|
||||
public class User {
|
||||
public int Id { get; set; }
|
||||
public string Name { get; set; }
|
||||
public string Description { get; set; }
|
||||
}
|
||||
public string Surname { get; set; }
|
||||
|
||||
public string Description
|
||||
{
|
||||
get => description;
|
||||
set
|
||||
{
|
||||
if (description != value)
|
||||
{
|
||||
description = value;
|
||||
OnPropertyChanged(nameof(Description));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public string Email
|
||||
{
|
||||
get => email;
|
||||
set
|
||||
{
|
||||
if (email != value)
|
||||
{
|
||||
email = value;
|
||||
OnPropertyChanged(nameof(Email));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public event PropertyChangedEventHandler? PropertyChanged;
|
||||
protected void OnPropertyChanged(string propertyName)
|
||||
{
|
||||
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,6 +16,8 @@ public class DataService {
|
||||
};
|
||||
}
|
||||
|
||||
// Dodawanie czy usuwanie elementów do listy w ObservableCollection NIE WYMAGA INotifyPropertyChanged,
|
||||
// Stosujemy to w momencie, kiedy modyfikujemy wlaściwość naszego elementu, np.: Imie osoby o ID nr. 1
|
||||
public ObservableCollection<User> GetUsers() => users;
|
||||
|
||||
public void AddUser(User user) {
|
||||
|
||||
+11
-5
@@ -1,9 +1,15 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||
x:Class="Navigation_Between.View.DetailedPage">
|
||||
<VerticalStackLayout>
|
||||
<Label Text="{Binding Name}" FontSize="24" FontAttributes="Bold" />
|
||||
<Label Text="{Binding Description}" FontSize="18" FontAttributes="Italic" />
|
||||
|
||||
<VerticalStackLayout Padding="20">
|
||||
<Label Text="Nazwa:" FontSize="20" />
|
||||
<Label Text="{Binding SelectedUser.Name}" FontSize="24" FontAttributes="Bold" />
|
||||
<Label Text="Opis:" FontSize="20" />
|
||||
<Label Text="{Binding SelectedUser.Description}" FontSize="18" />
|
||||
<Button Text="Edytuj opis" Command="{Binding EditDescriptionCommand}" />
|
||||
<Label Text="E-mail:" FontSize="20" />
|
||||
<Label Text="{Binding SelectedUser.Email}" FontSize="18" />
|
||||
<Button Text="Edytuj e-mail" Command="{Binding EditEmailCommand}" />
|
||||
</VerticalStackLayout>
|
||||
</ContentPage>
|
||||
</ContentPage>
|
||||
|
||||
+7
-2
@@ -2,7 +2,7 @@
|
||||
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||
x:Class="Navigation_Between.View.MainPage"
|
||||
xmlns:local="clr-namespace:Navigation_Between.ViewModel">
|
||||
x:Name="MainPage">
|
||||
|
||||
<ScrollView>
|
||||
<VerticalStackLayout
|
||||
@@ -13,7 +13,12 @@
|
||||
<DataTemplate>
|
||||
<Label Text="{Binding Name}" FontSize="Large">
|
||||
<Label.GestureRecognizers>
|
||||
<TapGestureRecognizer Command="{Binding Source={RelativeSource AncestorType={x:Type local:MainViewModel}}, Path=SelectUserCommand}" CommandParameter="{Binding}" />
|
||||
<!--
|
||||
Poprzednia wersja zapisu wyglądała następująco:
|
||||
<TapGestureRecognizer Command="{Binding Source={RelativeSource AncestorType={x:Type local:MainViewModel}}, Path=SelectUserCommand}" CommandParameter="{Binding}" />
|
||||
Ale ta zmiana wymaga dodania x:Name="MainPage" w ContentPage!
|
||||
-->
|
||||
<TapGestureRecognizer Command="{Binding Source={x:Reference MainPage}, Path=BindingContext.SelectUserCommand}" CommandParameter="{Binding}" />
|
||||
</Label.GestureRecognizers>
|
||||
</Label>
|
||||
</DataTemplate>
|
||||
|
||||
@@ -1,2 +1,51 @@
|
||||
// Huh... no nic nie ma, co tu chcesz?
|
||||
// ༼ つ ◕_◕ ༽つ
|
||||
using System.Windows.Input;
|
||||
using Navigation_Between.Model;
|
||||
|
||||
namespace Navigation_Between.ViewModel;
|
||||
|
||||
public class DetailedViewModel
|
||||
{
|
||||
public User SelectedUser { get; }
|
||||
|
||||
public ICommand EditDescriptionCommand { get; }
|
||||
public ICommand EditEmailCommand { get; }
|
||||
|
||||
public DetailedViewModel(User user)
|
||||
{
|
||||
SelectedUser = user;
|
||||
|
||||
EditDescriptionCommand = new Command(async () => await EditDescription());
|
||||
EditEmailCommand = new Command(async () => await EditEmail());
|
||||
}
|
||||
|
||||
private async Task EditDescription()
|
||||
{
|
||||
string result = await Shell.Current.DisplayPromptAsync(
|
||||
"Edytuj opis",
|
||||
"Podaj nowy opis:",
|
||||
"OK",
|
||||
"Anuluj",
|
||||
SelectedUser.Description
|
||||
);
|
||||
|
||||
if (!string.IsNullOrWhiteSpace(result)){
|
||||
SelectedUser.Description = result;
|
||||
}
|
||||
}
|
||||
|
||||
private async Task EditEmail()
|
||||
{
|
||||
string result = await Shell.Current.DisplayPromptAsync(
|
||||
"Edytuj e-mail",
|
||||
"Podaj nowy adres e-mail:",
|
||||
"OK",
|
||||
"Anuluj",
|
||||
SelectedUser.Email
|
||||
);
|
||||
|
||||
if (!string.IsNullOrWhiteSpace(result))
|
||||
{
|
||||
SelectedUser.Email = result;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -13,7 +13,7 @@ using System.Reflection;
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("Navigation Between")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0+582c0f69ab5586ed7e623fc5fc4298d259ef9782")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("Navigation Between")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("Navigation Between")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
@@ -1 +1 @@
|
||||
b3b3872767dd96d7e9dcd13b9e3697f92ddb6dcf7229c6d465bd53df185280b3
|
||||
1e9130490291e7f707a4689f6d882b31f8f90d69b334950840cdafb4c8ab700e
|
||||
|
||||
+7
-7
@@ -12,43 +12,43 @@ build_property.PlatformNeutralAssembly =
|
||||
build_property.EnforceExtendedAnalyzerRules =
|
||||
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||
build_property.RootNamespace = Navigation_Between
|
||||
build_property.ProjectDir = /Users/krzysiek/Projekty/SZKOLNE/MAUI/Navigation Between/
|
||||
build_property.ProjectDir = /Users/krzysiek/Projekty/Navigation Between/
|
||||
build_property.EnableComHosting =
|
||||
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||
build_property.EffectiveAnalysisLevelStyle = 9.0
|
||||
build_property.EnableCodeStyleSeverity =
|
||||
|
||||
[/Users/krzysiek/Projekty/SZKOLNE/MAUI/Navigation Between/App.xaml]
|
||||
[/Users/krzysiek/Projekty/Navigation Between/App.xaml]
|
||||
build_metadata.AdditionalFiles.GenKind = Xaml
|
||||
build_metadata.AdditionalFiles.ManifestResourceName = Navigation_Between.App.xaml
|
||||
build_metadata.AdditionalFiles.TargetPath = App.xaml
|
||||
build_metadata.AdditionalFiles.RelativePath = App.xaml
|
||||
|
||||
[/Users/krzysiek/Projekty/SZKOLNE/MAUI/Navigation Between/AppShell.xaml]
|
||||
[/Users/krzysiek/Projekty/Navigation Between/AppShell.xaml]
|
||||
build_metadata.AdditionalFiles.GenKind = Xaml
|
||||
build_metadata.AdditionalFiles.ManifestResourceName = Navigation_Between.AppShell.xaml
|
||||
build_metadata.AdditionalFiles.TargetPath = AppShell.xaml
|
||||
build_metadata.AdditionalFiles.RelativePath = AppShell.xaml
|
||||
|
||||
[/Users/krzysiek/Projekty/SZKOLNE/MAUI/Navigation Between/Resources/Styles/Colors.xaml]
|
||||
[/Users/krzysiek/Projekty/Navigation Between/Resources/Styles/Colors.xaml]
|
||||
build_metadata.AdditionalFiles.GenKind = Xaml
|
||||
build_metadata.AdditionalFiles.ManifestResourceName = Navigation_Between.Resources.Styles.Colors.xaml
|
||||
build_metadata.AdditionalFiles.TargetPath = Resources/Styles/Colors.xaml
|
||||
build_metadata.AdditionalFiles.RelativePath = Resources/Styles/Colors.xaml
|
||||
|
||||
[/Users/krzysiek/Projekty/SZKOLNE/MAUI/Navigation Between/Resources/Styles/Styles.xaml]
|
||||
[/Users/krzysiek/Projekty/Navigation Between/Resources/Styles/Styles.xaml]
|
||||
build_metadata.AdditionalFiles.GenKind = Xaml
|
||||
build_metadata.AdditionalFiles.ManifestResourceName = Navigation_Between.Resources.Styles.Styles.xaml
|
||||
build_metadata.AdditionalFiles.TargetPath = Resources/Styles/Styles.xaml
|
||||
build_metadata.AdditionalFiles.RelativePath = Resources/Styles/Styles.xaml
|
||||
|
||||
[/Users/krzysiek/Projekty/SZKOLNE/MAUI/Navigation Between/View/DetailedPage.xaml]
|
||||
[/Users/krzysiek/Projekty/Navigation Between/View/DetailedPage.xaml]
|
||||
build_metadata.AdditionalFiles.GenKind = Xaml
|
||||
build_metadata.AdditionalFiles.ManifestResourceName = Navigation_Between.View.DetailedPage.xaml
|
||||
build_metadata.AdditionalFiles.TargetPath = View/DetailedPage.xaml
|
||||
build_metadata.AdditionalFiles.RelativePath = View/DetailedPage.xaml
|
||||
|
||||
[/Users/krzysiek/Projekty/SZKOLNE/MAUI/Navigation Between/View/MainPage.xaml]
|
||||
[/Users/krzysiek/Projekty/Navigation Between/View/MainPage.xaml]
|
||||
build_metadata.AdditionalFiles.GenKind = Xaml
|
||||
build_metadata.AdditionalFiles.ManifestResourceName = Navigation_Between.View.MainPage.xaml
|
||||
build_metadata.AdditionalFiles.TargetPath = View/MainPage.xaml
|
||||
|
||||
Binary file not shown.
+4044
-4199
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@@ -24,8 +24,8 @@ androidgeneratejnimarshalmethods=false
|
||||
os=unix
|
||||
androidincludedebugsymbols=true
|
||||
androidpackagenamingpolicy=lowercasecrc64
|
||||
_nugetassetsfilehash=985784e24e8463fbc29b0cd8b0412770fa31cb6faaf230696404b7418b0dad3c
|
||||
_nugetassetsfilehash=b0895e277b368a1eb6dba3dfc33996f3f6e7ad91800ff50811474e06e8464af8
|
||||
typemapkind=strings-asm
|
||||
androidmanifestplaceholders=
|
||||
projectfullpath=/users/krzysiek/projekty/szkolne/maui/navigation between/navigation between.csproj
|
||||
projectfullpath=/users/krzysiek/projekty/navigation between/navigation between.csproj
|
||||
androidusedesignerassembly=true
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -1,27 +1,27 @@
|
||||
/Users/krzysiek/Projekty/SZKOLNE/MAUI/Navigation Between/obj/Debug/net9.0-android/resizetizer/r/mipmap-xxxhdpi/appicon_round.png
|
||||
/Users/krzysiek/Projekty/SZKOLNE/MAUI/Navigation Between/obj/Debug/net9.0-android/resizetizer/r/mipmap-xxhdpi/appicon_round.png
|
||||
/Users/krzysiek/Projekty/SZKOLNE/MAUI/Navigation Between/obj/Debug/net9.0-android/resizetizer/r/mipmap-xhdpi/appicon_round.png
|
||||
/Users/krzysiek/Projekty/SZKOLNE/MAUI/Navigation Between/obj/Debug/net9.0-android/resizetizer/r/mipmap-hdpi/appicon_round.png
|
||||
/Users/krzysiek/Projekty/SZKOLNE/MAUI/Navigation Between/obj/Debug/net9.0-android/resizetizer/r/mipmap-mdpi/appicon_round.png
|
||||
/Users/krzysiek/Projekty/SZKOLNE/MAUI/Navigation Between/obj/Debug/net9.0-android/resizetizer/r/mipmap-xxxhdpi/appicon.png
|
||||
/Users/krzysiek/Projekty/SZKOLNE/MAUI/Navigation Between/obj/Debug/net9.0-android/resizetizer/r/mipmap-xxhdpi/appicon.png
|
||||
/Users/krzysiek/Projekty/SZKOLNE/MAUI/Navigation Between/obj/Debug/net9.0-android/resizetizer/r/mipmap-xhdpi/appicon.png
|
||||
/Users/krzysiek/Projekty/SZKOLNE/MAUI/Navigation Between/obj/Debug/net9.0-android/resizetizer/r/mipmap-hdpi/appicon.png
|
||||
/Users/krzysiek/Projekty/SZKOLNE/MAUI/Navigation Between/obj/Debug/net9.0-android/resizetizer/r/mipmap-mdpi/appicon.png
|
||||
/Users/krzysiek/Projekty/SZKOLNE/MAUI/Navigation Between/obj/Debug/net9.0-android/resizetizer/r/mipmap-anydpi-v26/appicon_round.xml
|
||||
/Users/krzysiek/Projekty/SZKOLNE/MAUI/Navigation Between/obj/Debug/net9.0-android/resizetizer/r/mipmap-anydpi-v26/appicon.xml
|
||||
/Users/krzysiek/Projekty/SZKOLNE/MAUI/Navigation Between/obj/Debug/net9.0-android/resizetizer/r/mipmap-xxxhdpi/appicon_foreground.png
|
||||
/Users/krzysiek/Projekty/SZKOLNE/MAUI/Navigation Between/obj/Debug/net9.0-android/resizetizer/r/mipmap-xxhdpi/appicon_foreground.png
|
||||
/Users/krzysiek/Projekty/SZKOLNE/MAUI/Navigation Between/obj/Debug/net9.0-android/resizetizer/r/mipmap-xhdpi/appicon_foreground.png
|
||||
/Users/krzysiek/Projekty/SZKOLNE/MAUI/Navigation Between/obj/Debug/net9.0-android/resizetizer/r/mipmap-hdpi/appicon_foreground.png
|
||||
/Users/krzysiek/Projekty/SZKOLNE/MAUI/Navigation Between/obj/Debug/net9.0-android/resizetizer/r/mipmap-mdpi/appicon_foreground.png
|
||||
/Users/krzysiek/Projekty/SZKOLNE/MAUI/Navigation Between/obj/Debug/net9.0-android/resizetizer/r/mipmap-xxxhdpi/appicon_background.png
|
||||
/Users/krzysiek/Projekty/SZKOLNE/MAUI/Navigation Between/obj/Debug/net9.0-android/resizetizer/r/mipmap-xxhdpi/appicon_background.png
|
||||
/Users/krzysiek/Projekty/SZKOLNE/MAUI/Navigation Between/obj/Debug/net9.0-android/resizetizer/r/mipmap-xhdpi/appicon_background.png
|
||||
/Users/krzysiek/Projekty/SZKOLNE/MAUI/Navigation Between/obj/Debug/net9.0-android/resizetizer/r/mipmap-hdpi/appicon_background.png
|
||||
/Users/krzysiek/Projekty/SZKOLNE/MAUI/Navigation Between/obj/Debug/net9.0-android/resizetizer/r/mipmap-mdpi/appicon_background.png
|
||||
/Users/krzysiek/Projekty/SZKOLNE/MAUI/Navigation Between/obj/Debug/net9.0-android/resizetizer/r/drawable-xxxhdpi/dotnet_bot.png
|
||||
/Users/krzysiek/Projekty/SZKOLNE/MAUI/Navigation Between/obj/Debug/net9.0-android/resizetizer/r/drawable-xxhdpi/dotnet_bot.png
|
||||
/Users/krzysiek/Projekty/SZKOLNE/MAUI/Navigation Between/obj/Debug/net9.0-android/resizetizer/r/drawable-xhdpi/dotnet_bot.png
|
||||
/Users/krzysiek/Projekty/SZKOLNE/MAUI/Navigation Between/obj/Debug/net9.0-android/resizetizer/r/drawable-hdpi/dotnet_bot.png
|
||||
/Users/krzysiek/Projekty/SZKOLNE/MAUI/Navigation Between/obj/Debug/net9.0-android/resizetizer/r/drawable-mdpi/dotnet_bot.png
|
||||
/Users/krzysiek/Projekty/Navigation Between/obj/Debug/net9.0-android/resizetizer/r/mipmap-xxxhdpi/appicon_round.png
|
||||
/Users/krzysiek/Projekty/Navigation Between/obj/Debug/net9.0-android/resizetizer/r/mipmap-xxhdpi/appicon_round.png
|
||||
/Users/krzysiek/Projekty/Navigation Between/obj/Debug/net9.0-android/resizetizer/r/mipmap-xhdpi/appicon_round.png
|
||||
/Users/krzysiek/Projekty/Navigation Between/obj/Debug/net9.0-android/resizetizer/r/mipmap-hdpi/appicon_round.png
|
||||
/Users/krzysiek/Projekty/Navigation Between/obj/Debug/net9.0-android/resizetizer/r/mipmap-mdpi/appicon_round.png
|
||||
/Users/krzysiek/Projekty/Navigation Between/obj/Debug/net9.0-android/resizetizer/r/mipmap-xxxhdpi/appicon.png
|
||||
/Users/krzysiek/Projekty/Navigation Between/obj/Debug/net9.0-android/resizetizer/r/mipmap-xxhdpi/appicon.png
|
||||
/Users/krzysiek/Projekty/Navigation Between/obj/Debug/net9.0-android/resizetizer/r/mipmap-xhdpi/appicon.png
|
||||
/Users/krzysiek/Projekty/Navigation Between/obj/Debug/net9.0-android/resizetizer/r/mipmap-hdpi/appicon.png
|
||||
/Users/krzysiek/Projekty/Navigation Between/obj/Debug/net9.0-android/resizetizer/r/mipmap-mdpi/appicon.png
|
||||
/Users/krzysiek/Projekty/Navigation Between/obj/Debug/net9.0-android/resizetizer/r/mipmap-anydpi-v26/appicon_round.xml
|
||||
/Users/krzysiek/Projekty/Navigation Between/obj/Debug/net9.0-android/resizetizer/r/mipmap-anydpi-v26/appicon.xml
|
||||
/Users/krzysiek/Projekty/Navigation Between/obj/Debug/net9.0-android/resizetizer/r/mipmap-xxxhdpi/appicon_foreground.png
|
||||
/Users/krzysiek/Projekty/Navigation Between/obj/Debug/net9.0-android/resizetizer/r/mipmap-xxhdpi/appicon_foreground.png
|
||||
/Users/krzysiek/Projekty/Navigation Between/obj/Debug/net9.0-android/resizetizer/r/mipmap-xhdpi/appicon_foreground.png
|
||||
/Users/krzysiek/Projekty/Navigation Between/obj/Debug/net9.0-android/resizetizer/r/mipmap-hdpi/appicon_foreground.png
|
||||
/Users/krzysiek/Projekty/Navigation Between/obj/Debug/net9.0-android/resizetizer/r/mipmap-mdpi/appicon_foreground.png
|
||||
/Users/krzysiek/Projekty/Navigation Between/obj/Debug/net9.0-android/resizetizer/r/mipmap-xxxhdpi/appicon_background.png
|
||||
/Users/krzysiek/Projekty/Navigation Between/obj/Debug/net9.0-android/resizetizer/r/mipmap-xxhdpi/appicon_background.png
|
||||
/Users/krzysiek/Projekty/Navigation Between/obj/Debug/net9.0-android/resizetizer/r/mipmap-xhdpi/appicon_background.png
|
||||
/Users/krzysiek/Projekty/Navigation Between/obj/Debug/net9.0-android/resizetizer/r/mipmap-hdpi/appicon_background.png
|
||||
/Users/krzysiek/Projekty/Navigation Between/obj/Debug/net9.0-android/resizetizer/r/mipmap-mdpi/appicon_background.png
|
||||
/Users/krzysiek/Projekty/Navigation Between/obj/Debug/net9.0-android/resizetizer/r/drawable-xxxhdpi/dotnet_bot.png
|
||||
/Users/krzysiek/Projekty/Navigation Between/obj/Debug/net9.0-android/resizetizer/r/drawable-xxhdpi/dotnet_bot.png
|
||||
/Users/krzysiek/Projekty/Navigation Between/obj/Debug/net9.0-android/resizetizer/r/drawable-xhdpi/dotnet_bot.png
|
||||
/Users/krzysiek/Projekty/Navigation Between/obj/Debug/net9.0-android/resizetizer/r/drawable-hdpi/dotnet_bot.png
|
||||
/Users/krzysiek/Projekty/Navigation Between/obj/Debug/net9.0-android/resizetizer/r/drawable-mdpi/dotnet_bot.png
|
||||
|
||||
@@ -13,7 +13,7 @@ using System.Reflection;
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("Navigation Between")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0+582c0f69ab5586ed7e623fc5fc4298d259ef9782")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("Navigation Between")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("Navigation Between")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
@@ -1 +1 @@
|
||||
f530598078e3347d8effb8b95b748ce019306ad6215618da691f65db061fcf8e
|
||||
f8d2891a685870c2cf3768b467809a41e6e97e81d0af0fa928e2fd83aa9dd4f2
|
||||
|
||||
+7
-7
@@ -12,43 +12,43 @@ build_property.PlatformNeutralAssembly =
|
||||
build_property.EnforceExtendedAnalyzerRules =
|
||||
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||
build_property.RootNamespace = Navigation_Between
|
||||
build_property.ProjectDir = /Users/krzysiek/Projekty/SZKOLNE/MAUI/Navigation Between/
|
||||
build_property.ProjectDir = /Users/krzysiek/Projekty/Navigation Between/
|
||||
build_property.EnableComHosting =
|
||||
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||
build_property.EffectiveAnalysisLevelStyle = 9.0
|
||||
build_property.EnableCodeStyleSeverity =
|
||||
|
||||
[/Users/krzysiek/Projekty/SZKOLNE/MAUI/Navigation Between/App.xaml]
|
||||
[/Users/krzysiek/Projekty/Navigation Between/App.xaml]
|
||||
build_metadata.AdditionalFiles.GenKind = Xaml
|
||||
build_metadata.AdditionalFiles.ManifestResourceName = Navigation_Between.App.xaml
|
||||
build_metadata.AdditionalFiles.TargetPath = App.xaml
|
||||
build_metadata.AdditionalFiles.RelativePath = App.xaml
|
||||
|
||||
[/Users/krzysiek/Projekty/SZKOLNE/MAUI/Navigation Between/AppShell.xaml]
|
||||
[/Users/krzysiek/Projekty/Navigation Between/AppShell.xaml]
|
||||
build_metadata.AdditionalFiles.GenKind = Xaml
|
||||
build_metadata.AdditionalFiles.ManifestResourceName = Navigation_Between.AppShell.xaml
|
||||
build_metadata.AdditionalFiles.TargetPath = AppShell.xaml
|
||||
build_metadata.AdditionalFiles.RelativePath = AppShell.xaml
|
||||
|
||||
[/Users/krzysiek/Projekty/SZKOLNE/MAUI/Navigation Between/Resources/Styles/Colors.xaml]
|
||||
[/Users/krzysiek/Projekty/Navigation Between/Resources/Styles/Colors.xaml]
|
||||
build_metadata.AdditionalFiles.GenKind = Xaml
|
||||
build_metadata.AdditionalFiles.ManifestResourceName = Navigation_Between.Resources.Styles.Colors.xaml
|
||||
build_metadata.AdditionalFiles.TargetPath = Resources/Styles/Colors.xaml
|
||||
build_metadata.AdditionalFiles.RelativePath = Resources/Styles/Colors.xaml
|
||||
|
||||
[/Users/krzysiek/Projekty/SZKOLNE/MAUI/Navigation Between/Resources/Styles/Styles.xaml]
|
||||
[/Users/krzysiek/Projekty/Navigation Between/Resources/Styles/Styles.xaml]
|
||||
build_metadata.AdditionalFiles.GenKind = Xaml
|
||||
build_metadata.AdditionalFiles.ManifestResourceName = Navigation_Between.Resources.Styles.Styles.xaml
|
||||
build_metadata.AdditionalFiles.TargetPath = Resources/Styles/Styles.xaml
|
||||
build_metadata.AdditionalFiles.RelativePath = Resources/Styles/Styles.xaml
|
||||
|
||||
[/Users/krzysiek/Projekty/SZKOLNE/MAUI/Navigation Between/View/DetailedPage.xaml]
|
||||
[/Users/krzysiek/Projekty/Navigation Between/View/DetailedPage.xaml]
|
||||
build_metadata.AdditionalFiles.GenKind = Xaml
|
||||
build_metadata.AdditionalFiles.ManifestResourceName = Navigation_Between.View.DetailedPage.xaml
|
||||
build_metadata.AdditionalFiles.TargetPath = View/DetailedPage.xaml
|
||||
build_metadata.AdditionalFiles.RelativePath = View/DetailedPage.xaml
|
||||
|
||||
[/Users/krzysiek/Projekty/SZKOLNE/MAUI/Navigation Between/View/MainPage.xaml]
|
||||
[/Users/krzysiek/Projekty/Navigation Between/View/MainPage.xaml]
|
||||
build_metadata.AdditionalFiles.GenKind = Xaml
|
||||
build_metadata.AdditionalFiles.ManifestResourceName = Navigation_Between.View.MainPage.xaml
|
||||
build_metadata.AdditionalFiles.TargetPath = View/MainPage.xaml
|
||||
|
||||
Binary file not shown.
@@ -13,7 +13,7 @@ using System.Reflection;
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("Navigation Between")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0+582c0f69ab5586ed7e623fc5fc4298d259ef9782")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("Navigation Between")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("Navigation Between")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
+1
-1
@@ -1 +1 @@
|
||||
a670c1a92fd79ced3e99c294ab0ddabc247b6f21b9c146f5c48b9a4088b7e781
|
||||
2f10da694002480e03a44d0dc084384fc39c2fa667dd149b0b5ca67b9081b0d0
|
||||
|
||||
+7
-7
@@ -12,43 +12,43 @@ build_property.PlatformNeutralAssembly =
|
||||
build_property.EnforceExtendedAnalyzerRules =
|
||||
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||
build_property.RootNamespace = Navigation_Between
|
||||
build_property.ProjectDir = /Users/krzysiek/Projekty/SZKOLNE/MAUI/Navigation Between/
|
||||
build_property.ProjectDir = /Users/krzysiek/Projekty/Navigation Between/
|
||||
build_property.EnableComHosting =
|
||||
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||
build_property.EffectiveAnalysisLevelStyle = 9.0
|
||||
build_property.EnableCodeStyleSeverity =
|
||||
|
||||
[/Users/krzysiek/Projekty/SZKOLNE/MAUI/Navigation Between/App.xaml]
|
||||
[/Users/krzysiek/Projekty/Navigation Between/App.xaml]
|
||||
build_metadata.AdditionalFiles.GenKind = Xaml
|
||||
build_metadata.AdditionalFiles.ManifestResourceName = Navigation_Between.App.xaml
|
||||
build_metadata.AdditionalFiles.TargetPath = App.xaml
|
||||
build_metadata.AdditionalFiles.RelativePath = App.xaml
|
||||
|
||||
[/Users/krzysiek/Projekty/SZKOLNE/MAUI/Navigation Between/AppShell.xaml]
|
||||
[/Users/krzysiek/Projekty/Navigation Between/AppShell.xaml]
|
||||
build_metadata.AdditionalFiles.GenKind = Xaml
|
||||
build_metadata.AdditionalFiles.ManifestResourceName = Navigation_Between.AppShell.xaml
|
||||
build_metadata.AdditionalFiles.TargetPath = AppShell.xaml
|
||||
build_metadata.AdditionalFiles.RelativePath = AppShell.xaml
|
||||
|
||||
[/Users/krzysiek/Projekty/SZKOLNE/MAUI/Navigation Between/Resources/Styles/Colors.xaml]
|
||||
[/Users/krzysiek/Projekty/Navigation Between/Resources/Styles/Colors.xaml]
|
||||
build_metadata.AdditionalFiles.GenKind = Xaml
|
||||
build_metadata.AdditionalFiles.ManifestResourceName = Navigation_Between.Resources.Styles.Colors.xaml
|
||||
build_metadata.AdditionalFiles.TargetPath = Resources/Styles/Colors.xaml
|
||||
build_metadata.AdditionalFiles.RelativePath = Resources/Styles/Colors.xaml
|
||||
|
||||
[/Users/krzysiek/Projekty/SZKOLNE/MAUI/Navigation Between/Resources/Styles/Styles.xaml]
|
||||
[/Users/krzysiek/Projekty/Navigation Between/Resources/Styles/Styles.xaml]
|
||||
build_metadata.AdditionalFiles.GenKind = Xaml
|
||||
build_metadata.AdditionalFiles.ManifestResourceName = Navigation_Between.Resources.Styles.Styles.xaml
|
||||
build_metadata.AdditionalFiles.TargetPath = Resources/Styles/Styles.xaml
|
||||
build_metadata.AdditionalFiles.RelativePath = Resources/Styles/Styles.xaml
|
||||
|
||||
[/Users/krzysiek/Projekty/SZKOLNE/MAUI/Navigation Between/View/DetailedPage.xaml]
|
||||
[/Users/krzysiek/Projekty/Navigation Between/View/DetailedPage.xaml]
|
||||
build_metadata.AdditionalFiles.GenKind = Xaml
|
||||
build_metadata.AdditionalFiles.ManifestResourceName = Navigation_Between.View.DetailedPage.xaml
|
||||
build_metadata.AdditionalFiles.TargetPath = View/DetailedPage.xaml
|
||||
build_metadata.AdditionalFiles.RelativePath = View/DetailedPage.xaml
|
||||
|
||||
[/Users/krzysiek/Projekty/SZKOLNE/MAUI/Navigation Between/View/MainPage.xaml]
|
||||
[/Users/krzysiek/Projekty/Navigation Between/View/MainPage.xaml]
|
||||
build_metadata.AdditionalFiles.GenKind = Xaml
|
||||
build_metadata.AdditionalFiles.ManifestResourceName = Navigation_Between.View.MainPage.xaml
|
||||
build_metadata.AdditionalFiles.TargetPath = View/MainPage.xaml
|
||||
|
||||
Binary file not shown.
@@ -1,17 +1,17 @@
|
||||
{
|
||||
"format": 1,
|
||||
"restore": {
|
||||
"/Users/krzysiek/Projekty/SZKOLNE/MAUI/Navigation Between/Navigation Between.csproj": {}
|
||||
"/Users/krzysiek/Projekty/Navigation Between/Navigation Between.csproj": {}
|
||||
},
|
||||
"projects": {
|
||||
"/Users/krzysiek/Projekty/SZKOLNE/MAUI/Navigation Between/Navigation Between.csproj": {
|
||||
"/Users/krzysiek/Projekty/Navigation Between/Navigation Between.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "/Users/krzysiek/Projekty/SZKOLNE/MAUI/Navigation Between/Navigation Between.csproj",
|
||||
"projectUniqueName": "/Users/krzysiek/Projekty/Navigation Between/Navigation Between.csproj",
|
||||
"projectName": "Navigation Between",
|
||||
"projectPath": "/Users/krzysiek/Projekty/SZKOLNE/MAUI/Navigation Between/Navigation Between.csproj",
|
||||
"projectPath": "/Users/krzysiek/Projekty/Navigation Between/Navigation Between.csproj",
|
||||
"packagesPath": "/Users/krzysiek/.nuget/packages/",
|
||||
"outputPath": "/Users/krzysiek/Projekty/SZKOLNE/MAUI/Navigation Between/obj/",
|
||||
"outputPath": "/Users/krzysiek/Projekty/Navigation Between/obj/",
|
||||
"projectStyle": "PackageReference",
|
||||
"crossTargeting": true,
|
||||
"configFilePaths": [
|
||||
|
||||
@@ -19156,11 +19156,11 @@
|
||||
"project": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "/Users/krzysiek/Projekty/SZKOLNE/MAUI/Navigation Between/Navigation Between.csproj",
|
||||
"projectUniqueName": "/Users/krzysiek/Projekty/Navigation Between/Navigation Between.csproj",
|
||||
"projectName": "Navigation Between",
|
||||
"projectPath": "/Users/krzysiek/Projekty/SZKOLNE/MAUI/Navigation Between/Navigation Between.csproj",
|
||||
"projectPath": "/Users/krzysiek/Projekty/Navigation Between/Navigation Between.csproj",
|
||||
"packagesPath": "/Users/krzysiek/.nuget/packages/",
|
||||
"outputPath": "/Users/krzysiek/Projekty/SZKOLNE/MAUI/Navigation Between/obj/",
|
||||
"outputPath": "/Users/krzysiek/Projekty/Navigation Between/obj/",
|
||||
"projectStyle": "PackageReference",
|
||||
"crossTargeting": true,
|
||||
"configFilePaths": [
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "/rp2USrypgo=",
|
||||
"dgSpecHash": "SGcIevuCMHs=",
|
||||
"success": true,
|
||||
"projectFilePath": "/Users/krzysiek/Projekty/SZKOLNE/MAUI/Navigation Between/Navigation Between.csproj",
|
||||
"projectFilePath": "/Users/krzysiek/Projekty/Navigation Between/Navigation Between.csproj",
|
||||
"expectedPackageFiles": [
|
||||
"/Users/krzysiek/.nuget/packages/dotnetmeteor.hotreload.plugin/3.3.0/dotnetmeteor.hotreload.plugin.3.3.0.nupkg.sha512",
|
||||
"/Users/krzysiek/.nuget/packages/googlegson/2.11.0.3/googlegson.2.11.0.3.nupkg.sha512",
|
||||
|
||||
Reference in New Issue
Block a user