Skip to content

Commit 1a3d5d8

Browse files
authored
Add files via upload
1 parent c24ac7d commit 1a3d5d8

29 files changed

+1072
-0
lines changed

App.config

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8" ?>
2+
<configuration>
3+
<startup>
4+
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
5+
</startup>
6+
</configuration>

PFXConverter.csproj

+126
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,126 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4+
<PropertyGroup>
5+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7+
<ProjectGuid>{9D19C230-2034-4AD5-A991-A0D85F8EFE00}</ProjectGuid>
8+
<OutputType>WinExe</OutputType>
9+
<RootNamespace>PFXConverter</RootNamespace>
10+
<AssemblyName>PFXConverter</AssemblyName>
11+
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
12+
<FileAlignment>512</FileAlignment>
13+
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
14+
<Deterministic>true</Deterministic>
15+
<PublishUrl>publish\</PublishUrl>
16+
<Install>true</Install>
17+
<InstallFrom>Disk</InstallFrom>
18+
<UpdateEnabled>false</UpdateEnabled>
19+
<UpdateMode>Foreground</UpdateMode>
20+
<UpdateInterval>7</UpdateInterval>
21+
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
22+
<UpdatePeriodically>false</UpdatePeriodically>
23+
<UpdateRequired>false</UpdateRequired>
24+
<MapFileExtensions>true</MapFileExtensions>
25+
<ApplicationRevision>0</ApplicationRevision>
26+
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
27+
<IsWebBootstrapper>false</IsWebBootstrapper>
28+
<UseApplicationTrust>false</UseApplicationTrust>
29+
<BootstrapperEnabled>true</BootstrapperEnabled>
30+
</PropertyGroup>
31+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
32+
<PlatformTarget>AnyCPU</PlatformTarget>
33+
<DebugSymbols>true</DebugSymbols>
34+
<DebugType>full</DebugType>
35+
<Optimize>false</Optimize>
36+
<OutputPath>bin\Debug\</OutputPath>
37+
<DefineConstants>DEBUG;TRACE</DefineConstants>
38+
<ErrorReport>prompt</ErrorReport>
39+
<WarningLevel>4</WarningLevel>
40+
</PropertyGroup>
41+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
42+
<PlatformTarget>AnyCPU</PlatformTarget>
43+
<DebugType>pdbonly</DebugType>
44+
<Optimize>true</Optimize>
45+
<OutputPath>bin\Release\</OutputPath>
46+
<DefineConstants>TRACE</DefineConstants>
47+
<ErrorReport>prompt</ErrorReport>
48+
<WarningLevel>4</WarningLevel>
49+
</PropertyGroup>
50+
<ItemGroup>
51+
<Reference Include="System" />
52+
<Reference Include="System.Core" />
53+
<Reference Include="System.Xml.Linq" />
54+
<Reference Include="System.Data.DataSetExtensions" />
55+
<Reference Include="Microsoft.CSharp" />
56+
<Reference Include="System.Data" />
57+
<Reference Include="System.Deployment" />
58+
<Reference Include="System.Drawing" />
59+
<Reference Include="System.Net.Http" />
60+
<Reference Include="System.Windows.Forms" />
61+
<Reference Include="System.Xml" />
62+
</ItemGroup>
63+
<ItemGroup>
64+
<Compile Include="frmPfxConverter.cs">
65+
<SubType>Form</SubType>
66+
</Compile>
67+
<Compile Include="frmPfxConverter.Designer.cs">
68+
<DependentUpon>frmPfxConverter.cs</DependentUpon>
69+
</Compile>
70+
<Compile Include="Program.cs" />
71+
<Compile Include="Properties\AssemblyInfo.cs" />
72+
<EmbeddedResource Include="frmPfxConverter.resx">
73+
<DependentUpon>frmPfxConverter.cs</DependentUpon>
74+
</EmbeddedResource>
75+
<EmbeddedResource Include="Properties\Resources.resx">
76+
<Generator>ResXFileCodeGenerator</Generator>
77+
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
78+
<SubType>Designer</SubType>
79+
</EmbeddedResource>
80+
<Compile Include="Properties\Resources.Designer.cs">
81+
<AutoGen>True</AutoGen>
82+
<DependentUpon>Resources.resx</DependentUpon>
83+
<DesignTime>True</DesignTime>
84+
</Compile>
85+
<None Include="Properties\Settings.settings">
86+
<Generator>SettingsSingleFileGenerator</Generator>
87+
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
88+
</None>
89+
<Compile Include="Properties\Settings.Designer.cs">
90+
<AutoGen>True</AutoGen>
91+
<DependentUpon>Settings.settings</DependentUpon>
92+
<DesignTimeSharedInput>True</DesignTimeSharedInput>
93+
</Compile>
94+
</ItemGroup>
95+
<ItemGroup>
96+
<None Include="App.config" />
97+
</ItemGroup>
98+
<ItemGroup>
99+
<None Include="Resources\openssl.exe" />
100+
</ItemGroup>
101+
<ItemGroup>
102+
<None Include="Resources\jli.dll" />
103+
</ItemGroup>
104+
<ItemGroup>
105+
<None Include="Resources\keytool.exe" />
106+
</ItemGroup>
107+
<ItemGroup>
108+
<None Include="Resources\sapgenpse.exe" />
109+
</ItemGroup>
110+
<ItemGroup>
111+
<None Include="Resources\sapcrypto.dll" />
112+
</ItemGroup>
113+
<ItemGroup>
114+
<BootstrapperPackage Include=".NETFramework,Version=v4.7.2">
115+
<Visible>False</Visible>
116+
<ProductName>Microsoft .NET Framework 4.7.2 %28x86 and x64%29</ProductName>
117+
<Install>true</Install>
118+
</BootstrapperPackage>
119+
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
120+
<Visible>False</Visible>
121+
<ProductName>.NET Framework 3.5 SP1</ProductName>
122+
<Install>false</Install>
123+
</BootstrapperPackage>
124+
</ItemGroup>
125+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
126+
</Project>

PFXConverter.csproj.user

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<PropertyGroup>
4+
<PublishUrlHistory>publish\</PublishUrlHistory>
5+
<InstallUrlHistory />
6+
<SupportUrlHistory />
7+
<UpdateUrlHistory />
8+
<BootstrapperUrlHistory />
9+
<ErrorReportUrlHistory />
10+
<FallbackCulture>en-US</FallbackCulture>
11+
<VerifyUploadedFiles>false</VerifyUploadedFiles>
12+
</PropertyGroup>
13+
</Project>

PFXConverter.sln

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 16
4+
VisualStudioVersion = 16.0.30320.27
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PFXConverter", "PFXConverter.csproj", "{9D19C230-2034-4AD5-A991-A0D85F8EFE00}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{9D19C230-2034-4AD5-A991-A0D85F8EFE00}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{9D19C230-2034-4AD5-A991-A0D85F8EFE00}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{9D19C230-2034-4AD5-A991-A0D85F8EFE00}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{9D19C230-2034-4AD5-A991-A0D85F8EFE00}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
GlobalSection(ExtensibilityGlobals) = postSolution
23+
SolutionGuid = {90E00BC9-F29B-452B-AD9F-7FF4504704B4}
24+
EndGlobalSection
25+
EndGlobal

Program.cs

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using System.Threading.Tasks;
5+
using System.Windows.Forms;
6+
7+
namespace PFXConverter
8+
{
9+
static class Program
10+
{
11+
/// <summary>
12+
/// The main entry point for the application.
13+
/// </summary>
14+
[STAThread]
15+
static void Main()
16+
{
17+
Application.EnableVisualStyles();
18+
Application.SetCompatibleTextRenderingDefault(false);
19+
Application.Run(new frmPfxConverter());
20+
}
21+
}
22+
}

Properties/AssemblyInfo.cs

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
using System.Reflection;
2+
using System.Runtime.CompilerServices;
3+
using System.Runtime.InteropServices;
4+
5+
// General Information about an assembly is controlled through the following
6+
// set of attributes. Change these attribute values to modify the information
7+
// associated with an assembly.
8+
[assembly: AssemblyTitle("PFXConverter")]
9+
[assembly: AssemblyDescription("")]
10+
[assembly: AssemblyConfiguration("")]
11+
[assembly: AssemblyCompany("")]
12+
[assembly: AssemblyProduct("PFXConverter")]
13+
[assembly: AssemblyCopyright("Copyright © 2022")]
14+
[assembly: AssemblyTrademark("Elad Ben-Matityahu")]
15+
[assembly: AssemblyCulture("")]
16+
17+
// Setting ComVisible to false makes the types in this assembly not visible
18+
// to COM components. If you need to access a type in this assembly from
19+
// COM, set the ComVisible attribute to true on that type.
20+
[assembly: ComVisible(false)]
21+
22+
// The following GUID is for the ID of the typelib if this project is exposed to COM
23+
[assembly: Guid("9d19c230-2034-4ad5-a991-a0d85f8efe00")]
24+
25+
// Version information for an assembly consists of the following four values:
26+
//
27+
// Major Version
28+
// Minor Version
29+
// Build Number
30+
// Revision
31+
//
32+
// You can specify all the values or you can default the Build and Revision Numbers
33+
// by using the '*' as shown below:
34+
// [assembly: AssemblyVersion("1.0.*")]
35+
[assembly: AssemblyVersion("1.0.0.0")]
36+
[assembly: AssemblyFileVersion("1.0.0.0")]

Properties/Resources.Designer.cs

+93
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)