-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAndroidKeyGen.csproj
66 lines (66 loc) · 3.16 KB
/
AndroidKeyGen.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<LangVersion>preview</LangVersion>
<Configuration Condition=" '$(Configuration)' == '' ">Release</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{57EAA6B0-5C69-4AE0-8C88-89126AC0BC78}</ProjectGuid>
<OutputType>WinExe</OutputType>
<RootNamespace>AndroidKeyGen</RootNamespace>
<AssemblyName>AndroidKeyGen</AssemblyName>
<TargetFrameworkVersion>v4.6.2</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<Deterministic>true</Deterministic>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>none</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>
</DefineConstants>
<ErrorReport>none</ErrorReport>
<WarningLevel>5</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
<NoWarn>S108;SA1200;SA1600;SA1633;SA1602;S2486;S1075;SA0001;SA1101;</NoWarn>
</PropertyGroup>
<PropertyGroup>
<StartupObject />
<ApplicationManifest>Properties\app.manifest</ApplicationManifest>
<ApplicationIcon>Properties\icon.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<Reference Include="BouncyCastle.Cryptography, Version=2.0.0.0, Culture=neutral, PublicKeyToken=072edcf4a5328938, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>Properties\BouncyCastle.Cryptography.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="System" />
<Reference Include="System.Drawing" />
<Reference Include="System.IO.Compression" />
<Reference Include="System.Windows.Forms" />
<Reference Include="Microsoft.CSharp" />
<Compile Include="src\AndroidKeyGenForm.cs" />
<Compile Include="src\CertUtils.cs" />
<Compile Include="src\LaUIForm.cs" />
<Compile Include="src\Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<None Include="Properties\app.manifest" />
<EmbeddedResource Include="Properties\res.gz" />
<EmbeddedResource Include="Properties\Android_symbol_green_RGB.png" />
<Content Include="Properties\icon.ico" />
<None Include="Properties\BouncyCastle.Cryptography.dll" />
<PackageReference Include="StyleCop.Analyzers">
<Version>1.2.0-beta.556</Version>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<PropertyGroup>
<PostBuildEvent>lalaki_sign "$(TargetPath)"</PostBuildEvent>
</PropertyGroup>
</Project>