Skip to content

Commit

Permalink
Ajustes
Browse files Browse the repository at this point in the history
  • Loading branch information
fpedrolucas95 committed Jul 28, 2024
1 parent 9172b68 commit 2c77881
Show file tree
Hide file tree
Showing 4 changed files with 79 additions and 50 deletions.
21 changes: 18 additions & 3 deletions AdvocaPro.sln
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,31 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AdvocaPro", "MauiApp1\Advoc
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
AdvocaPro|Any CPU = AdvocaPro|Any CPU
AdvocaPro|x64 = AdvocaPro|x64
Debug|Any CPU = Debug|Any CPU
Debug|x64 = Debug|x64
Release|Any CPU = Release|Any CPU
Release|x64 = Release|x64
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{C35B1D54-5DF6-4122-A04F-EDBB25F4C4E2}.AdvocaPro|Any CPU.ActiveCfg = AdvocaPro|x64
{C35B1D54-5DF6-4122-A04F-EDBB25F4C4E2}.AdvocaPro|Any CPU.Build.0 = AdvocaPro|x64
{C35B1D54-5DF6-4122-A04F-EDBB25F4C4E2}.AdvocaPro|Any CPU.Deploy.0 = AdvocaPro|x64
{C35B1D54-5DF6-4122-A04F-EDBB25F4C4E2}.AdvocaPro|x64.ActiveCfg = AdvocaPro|x64
{C35B1D54-5DF6-4122-A04F-EDBB25F4C4E2}.AdvocaPro|x64.Build.0 = AdvocaPro|x64
{C35B1D54-5DF6-4122-A04F-EDBB25F4C4E2}.AdvocaPro|x64.Deploy.0 = AdvocaPro|x64
{C35B1D54-5DF6-4122-A04F-EDBB25F4C4E2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C35B1D54-5DF6-4122-A04F-EDBB25F4C4E2}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C35B1D54-5DF6-4122-A04F-EDBB25F4C4E2}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
{C35B1D54-5DF6-4122-A04F-EDBB25F4C4E2}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C35B1D54-5DF6-4122-A04F-EDBB25F4C4E2}.Release|Any CPU.Build.0 = Release|Any CPU
{C35B1D54-5DF6-4122-A04F-EDBB25F4C4E2}.Release|Any CPU.Deploy.0 = Release|Any CPU
{C35B1D54-5DF6-4122-A04F-EDBB25F4C4E2}.Debug|x64.ActiveCfg = Debug|x64
{C35B1D54-5DF6-4122-A04F-EDBB25F4C4E2}.Debug|x64.Build.0 = Debug|x64
{C35B1D54-5DF6-4122-A04F-EDBB25F4C4E2}.Debug|x64.Deploy.0 = Debug|x64
{C35B1D54-5DF6-4122-A04F-EDBB25F4C4E2}.Release|Any CPU.ActiveCfg = Release|x64
{C35B1D54-5DF6-4122-A04F-EDBB25F4C4E2}.Release|Any CPU.Deploy.0 = Release|x64
{C35B1D54-5DF6-4122-A04F-EDBB25F4C4E2}.Release|x64.ActiveCfg = Release|x64
{C35B1D54-5DF6-4122-A04F-EDBB25F4C4E2}.Release|x64.Build.0 = Release|x64
{C35B1D54-5DF6-4122-A04F-EDBB25F4C4E2}.Release|x64.Deploy.0 = Release|x64
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
31 changes: 20 additions & 11 deletions MauiApp1/AdvocaPro.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,23 +19,32 @@
<PackageReleaseNotes>Versão inicial apenas para testes, não utilize no dia a dia.</PackageReleaseNotes>
<PackageProjectUrl>https://github.com/fpedrolucas95/AdvocaPro</PackageProjectUrl>
<BaseOutputPath>C:\Users\fpedr\Documents\AdvocaPro</BaseOutputPath>
<PlatformTarget>AnyCPU</PlatformTarget>
<PlatformTarget>x64</PlatformTarget>
<GenerateAppInstallerFile>False</GenerateAppInstallerFile>
<AppxPackageSigningEnabled>True</AppxPackageSigningEnabled>
<AppxPackageSigningTimestampDigestAlgorithm>SHA256</AppxPackageSigningTimestampDigestAlgorithm>
<AppxAutoIncrementPackageRevision>True</AppxAutoIncrementPackageRevision>
<AppxAutoIncrementPackageRevision>False</AppxAutoIncrementPackageRevision>
<AppxPackageDir>C:\Users\fpedr\Documents\AdvocaPro\AppPackages\</AppxPackageDir>
<AppxSymbolPackageEnabled>False</AppxSymbolPackageEnabled>
<GenerateTestArtifacts>True</GenerateTestArtifacts>
<HoursBetweenUpdateChecks>0</HoursBetweenUpdateChecks>
<PackageCertificateThumbprint>66188760366C7244AFF9161869F8ABABB3094915</PackageCertificateThumbprint>
<DefaultLanguage>pt-BR</DefaultLanguage>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<SelfContained>true</SelfContained>
<Platforms>x64</Platforms>
<Configurations>Debug;Release;AdvocaPro</Configurations>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<ApplicationDisplayVersion>0.2.0</ApplicationDisplayVersion>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<ApplicationDisplayVersion>0.2.0</ApplicationDisplayVersion>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<ApplicationDisplayVersion>0.2.0</ApplicationDisplayVersion>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='AdvocaPro|x64'">
<ApplicationDisplayVersion>0.2.0</ApplicationDisplayVersion>
</PropertyGroup>

Expand Down Expand Up @@ -77,13 +86,13 @@
<Generator>MSBuild:Compile</Generator>
</MauiXaml>
<MauiXaml Update="View\CasesView.xaml">
<Generator>MSBuild:Compile</Generator>
<Generator>MSBuild:Compile</Generator>
</MauiXaml>
<MauiXaml Update="View\ClientView.xaml">
<Generator>MSBuild:Compile</Generator>
</MauiXaml>
<MauiXaml Update="View\DeadlineManagementView.xaml">
<Generator>MSBuild:Compile</Generator>
<Generator>MSBuild:Compile</Generator>
</MauiXaml>
<MauiXaml Update="View\LoginPageView.xaml">
<Generator>MSBuild:Compile</Generator>
Expand All @@ -92,16 +101,16 @@
<Generator>MSBuild:Compile</Generator>
</MauiXaml>
<MauiXaml Update="View\ClientProfileView.xaml">
<Generator>MSBuild:Compile</Generator>
<Generator>MSBuild:Compile</Generator>
</MauiXaml>
<MauiXaml Update="View\WelcomeView.xaml">
<Generator>MSBuild:Compile</Generator>
</MauiXaml>
</ItemGroup>

<ItemGroup>
<Compile Update="View\ClientProfileView.xaml.cs">
<DependentUpon>ClientProfileView.xaml</DependentUpon>
</Compile>
<Compile Update="View\ClientProfileView.xaml.cs">
<DependentUpon>ClientProfileView.xaml</DependentUpon>
</Compile>
</ItemGroup>
</Project>
Binary file modified MauiApp1/Database/sqlite.db
Binary file not shown.
77 changes: 41 additions & 36 deletions MauiApp1/Platforms/Windows/Package.appxmanifest
Original file line number Diff line number Diff line change
Expand Up @@ -6,41 +6,46 @@
xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities"
IgnorableNamespaces="uap rescap">

<Identity Name="maui-package-name-placeholder" Publisher="CN=fpedrolucas95" Version="0.2.2.0" />

<mp:PhoneIdentity PhoneProductId="B06C414A-7D45-47A1-B421-E4D925779850" PhonePublisherId="00000000-0000-0000-0000-000000000000"/>

<Properties>
<DisplayName>$placeholder$</DisplayName>
<PublisherDisplayName>User Name</PublisherDisplayName>
<Logo>$placeholder$.png</Logo>
</Properties>

<Dependencies>
<TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.17763.0" MaxVersionTested="10.0.19041.0" />
<TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.17763.0" MaxVersionTested="10.0.19041.0" />
</Dependencies>

<Resources>
<Resource Language="x-generate" />
</Resources>

<Applications>
<Application Id="App" Executable="$targetnametoken$.exe" EntryPoint="$targetentrypoint$">
<uap:VisualElements
DisplayName="$placeholder$"
Description="$placeholder$"
Square150x150Logo="$placeholder$.png"
Square44x44Logo="$placeholder$.png"
BackgroundColor="transparent">
<uap:DefaultTile Square71x71Logo="$placeholder$.png" Wide310x150Logo="$placeholder$.png" Square310x310Logo="$placeholder$.png" />
<uap:SplashScreen Image="$placeholder$.png" />
</uap:VisualElements>
</Application>
</Applications>

<Capabilities>
<rescap:Capability Name="runFullTrust" />
</Capabilities>
<Identity Name="maui-package-name-placeholder" Publisher="CN=fpedrolucas95" Version="0.2.3.0" />

<mp:PhoneIdentity PhoneProductId="B06C414A-7D45-47A1-B421-E4D925779850" PhonePublisherId="00000000-0000-0000-0000-000000000000"/>

<Properties>
<DisplayName>$placeholder$</DisplayName>
<PublisherDisplayName>User Name</PublisherDisplayName>
<Logo>$placeholder$.png</Logo>
</Properties>

<Dependencies>
<TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.17763.0" MaxVersionTested="10.0.19041.0" />
<TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.17763.0" MaxVersionTested="10.0.19041.0" />
</Dependencies>

<Resources>
<Resource Language="x-generate" />
</Resources>

<Applications>
<Application Id="App" Executable="$targetnametoken$.exe" EntryPoint="$targetentrypoint$">
<uap:VisualElements
DisplayName="$placeholder$"
Description="$placeholder$"
Square150x150Logo="$placeholder$.png"
Square44x44Logo="$placeholder$.png"
BackgroundColor="transparent">
<uap:DefaultTile Square71x71Logo="$placeholder$.png" Wide310x150Logo="$placeholder$.png" Square310x310Logo="$placeholder$.png" />
<uap:SplashScreen Image="$placeholder$.png" />
</uap:VisualElements>
</Application>
</Applications>

<Capabilities>
<rescap:Capability Name="runFullTrust" />
<uap:Capability Name="videosLibrary"/>
<uap:Capability Name="musicLibrary"/>
<uap:Capability Name="picturesLibrary"/>
<uap:Capability Name="documentsLibrary"/>
<rescap:Capability Name="broadFileSystemAccess"/>
</Capabilities>

</Package>

0 comments on commit 2c77881

Please sign in to comment.