Skip to content

Commit

Permalink
Merge pull request #2 from Cootz/dev
Browse files Browse the repository at this point in the history
Dev merge
  • Loading branch information
Cootz authored Nov 14, 2022
2 parents 5527225 + 25eff44 commit 925e06f
Show file tree
Hide file tree
Showing 294 changed files with 14,028 additions and 473 deletions.
1 change: 1 addition & 0 deletions .upgrade-assistant
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"Build":"0.4.355802\u002Bb2aeae2c0e41fbfed35df6ab2e88b82a0c11be2b","CurrentProject":"Passwords.csproj","EntryPoints":["Passwords.csproj"],"Properties":{}}
Binary file added .vs/PasswordManager/v17/.suo
Binary file not shown.
Binary file modified .vs/Passwords/DesignTimeBuild/.dtbcache.v2
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Empty file.
Binary file added .vs/Passwords/v17/.suo
Binary file not shown.
82 changes: 82 additions & 0 deletions AnalysisReport.sarif
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
{
"$schema": "https://schemastore.azurewebsites.net/schemas/json/sarif-2.1.0-rtm.5.json",
"version": "2.1.0",
"runs": [
{
"tool": {
"driver": {
"name": "Dependency Analysis",
"semanticVersion": "0.4.355802",
"informationUri": "https://docs.microsoft.com/en-us/dotnet/core/porting/upgrade-assistant-overview",
"rules": [
{
"id": "UA106",
"name": "PackageToBeAdded",
"fullDescription": {
"text": "Packages that need to be added in order to upgrade the project to chosen TFM"
},
"helpUri": "https://docs.microsoft.com/en-us/dotnet/core/porting/upgrade-assistant-overview"
}
]
}
},
"results": [
{
"ruleId": "UA106",
"message": {
"text": "Package Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers, Version=0.4.355802 needs to be added."
},
"locations": [
{
"physicalLocation": {
"artifactLocation": {
"uri": "file:///C:/Users/PC/Source/Repos/PasswordManager/Passwords/Passwords.csproj"
},
"region": {}
}
}
]
},
{
"ruleId": "UA106",
"message": {
"text": "Package Microsoft.Windows.Compatibility, Version=7.0.0 needs to be added."
},
"locations": [
{
"physicalLocation": {
"artifactLocation": {
"uri": "file:///C:/Users/PC/Source/Repos/PasswordManager/Passwords/Passwords.csproj"
},
"region": {}
}
}
]
}
],
"columnKind": "utf16CodeUnits"
},
{
"tool": {
"driver": {
"name": "API Upgradability",
"semanticVersion": "0.4.355802",
"informationUri": "https://docs.microsoft.com/en-us/dotnet/core/porting/upgrade-assistant-overview"
}
},
"results": [],
"columnKind": "utf16CodeUnits"
},
{
"tool": {
"driver": {
"name": "Component Analysis",
"semanticVersion": "0.4.355802",
"informationUri": "https://docs.microsoft.com/en-us/dotnet/core/porting/upgrade-assistant-overview"
}
},
"results": [],
"columnKind": "utf16CodeUnits"
}
]
}
2 changes: 1 addition & 1 deletion Passwords/PasData/DBController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public async Task Initialize()
try
{
await CreateCommand("CREATE TABLE Profiles " +
"(ProfileID int NOT NULL UNIQIE," +
"(ProfileID int PRIMARY KEY," +
"Service nvarchar(4000) NOT NULL," +
"Email nvarchar(4000) NOT NULL," +
"Password nvarchar(4000) NOT NULL," +
Expand Down
13 changes: 6 additions & 7 deletions Passwords/Passwords.csproj
Original file line number Diff line number Diff line change
@@ -1,29 +1,28 @@
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">

<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<TargetFramework>net6.0-windows</TargetFramework>
<UseWPF>true</UseWPF>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="EntityFramework.SqlServerCompact" Version="6.4.4" />
<PackageReference Include="FluentMigrator.Runner.SqlServerCe" Version="3.2.17" />
<PackageReference Include="FluentMigrator.Runner.SqlServerCe" Version="3.3.2" />
<PackageReference Include="Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers" Version="0.4.355802">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.Windows.Compatibility" Version="7.0.0" />
</ItemGroup>

<ItemGroup>
<Compile Update="PDS.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>PDS.xsd</DependentUpon>
</Compile>
</ItemGroup>

<ItemGroup>
<None Update="PDS.xsd">
<Generator>MSDataSetGenerator</Generator>
<LastGenOutput>PDS.Designer.cs</LastGenOutput>
</None>
</ItemGroup>

</Project>
4 changes: 2 additions & 2 deletions Passwords/Passwords.csproj.user
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@
</ApplicationDefinition>
</ItemGroup>
<ItemGroup>
<Compile Update="Recent.xaml.cs">
<Compile Update="Views\Recent.xaml.cs">
<SubType>Code</SubType>
</Compile>
</ItemGroup>
<ItemGroup>
<Page Update="MainWindow.xaml">
<SubType>Designer</SubType>
</Page>
<Page Update="Recent.xaml">
<Page Update="Views\Recent.xaml">
<SubType>Designer</SubType>
</Page>
</ItemGroup>
Expand Down
File renamed without changes.
8 changes: 6 additions & 2 deletions Passwords/Recent.xaml → Passwords/Views/Recent.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,16 @@
<TextBlock DockPanel.Dock="Top" Text="Recent" FontSize="20" FontFamily="Areal"/>

<Grid DockPanel.Dock="Right">
<ListBox BorderThickness="0"/>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="2*"/>
<ColumnDefinition Width="37*"/>
</Grid.ColumnDefinitions>
<ListBox BorderThickness="0" Grid.ColumnSpan="2"/>
</Grid>
</DockPanel>


</DockPanel>


</Page>
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public Recent()
// }
//});

List<Profile> profiles = PasswordController.SearhProfiles("Service=\'steam\'").Result;
List<Profile> profiles = PasswordController.SearhProfiles("Service LIKE 'steam'").Result;

foreach (var prof in profiles)
{
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading

0 comments on commit 925e06f

Please sign in to comment.