Skip to content

Commit

Permalink
add fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ichensky committed Nov 22, 2020
1 parent 42b1ac6 commit 3ed2fa3
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 5 deletions.
Binary file added doc/imgs/AddAccount.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added doc/imgs/Windows2FA.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 4 additions & 4 deletions src/Windows2FA/Windows2FA/About.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:Windows2FA"
mc:Ignorable="d"
Title="About" Height="200" Width="400">
Title="About" Height="200" Width="400" MinHeight="200" MaxHeight="200" MinWidth="400" MaxWidth="400">
<Grid>
<TextBlock Margin="10,10,175,148">Windows2FA v1.0</TextBlock>
<TextBlock Margin="10,36,10,104">Copyright (c) Ivan Chensky</TextBlock>
<TextBlock Margin="10,58,10,82">https://github.com/ichensky</TextBlock>
<TextBlock Margin="10,10,0,0" HorizontalAlignment="Center" Width="370" Height="20" VerticalAlignment="Top">Windows2FA v1.0</TextBlock>
<TextBlock Margin="10,35,0,0" HorizontalAlignment="Center" Width="370" Height="20" VerticalAlignment="Top">Copyright (c) Ivan Chensky</TextBlock>
<TextBlock Margin="10,60,0,0" HorizontalAlignment="Center" Width="370" Height="20" VerticalAlignment="Top">https://github.com/ichensky</TextBlock>
</Grid>
</Window>
2 changes: 1 addition & 1 deletion src/Windows2FA/Windows2FA/MainWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:Windows2FA"
mc:Ignorable="d"
Title="MainWindow" Height="400" Width="420" MinHeight="200" MaxWidth="420" MinWidth="410" >
Title="Windows 2FA" Height="400" Width="420" MinHeight="200" MaxWidth="420" MinWidth="410" >
<Window.Resources>
<DataTemplate x:Key="QRTemplate" >
<Grid Margin="5,5,5,5" Height="50">
Expand Down
19 changes: 19 additions & 0 deletions src/Windows2FA/Windows2FA/Windows2FA.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,14 @@
<Authors>Ivan Chenskyi</Authors>
<SignAssembly>true</SignAssembly>
<DelaySign>false</DelaySign>
<Product>Windows 2FA</Product>
<PackageIcon>authentication.png</PackageIcon>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebugType>none</DebugType>
<DebugSymbols>false</DebugSymbols>
<GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
</PropertyGroup>

<ItemGroup>
Expand All @@ -17,4 +25,15 @@
<PackageReference Include="ZXing.Net" Version="0.16.6" />
</ItemGroup>

<ItemGroup>
<None Include="..\..\..\data\authentication.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>

<ItemGroup>
<Folder Include="Properties\" />
</ItemGroup>

</Project>

0 comments on commit 3ed2fa3

Please sign in to comment.