Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -327,3 +327,5 @@ ASALocalRun/

# MFractors (Xamarin productivity tool) working folder
.mfractor/

.vscode/
14 changes: 7 additions & 7 deletions src/AK.PfxTool.csproj
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.2</TargetFramework>
<TargetFramework>netcoreapp3.1</TargetFramework>
<RootNamespace>AK.PfxTool</RootNamespace>
<AssemblyName>pfxtool</AssemblyName>
<Version>1.0.0</Version>
<Version>1.0.1</Version>
<PackageId>pfxtool</PackageId>
<IsPackable>true</IsPackable>
<PackAsTool>true</PackAsTool>
<PackageVersion>1.0.0</PackageVersion>
<PackageVersion>1.0.1</PackageVersion>
<Authors>Aashish Koirala</Authors>
<Company>Aashish Koirala</Company>
<Product>PFX Tool</Product>
Expand All @@ -25,8 +25,8 @@
<PackageIconUrl>https://pfxtool.aashishkoirala.com/assets/favicon.ico</PackageIconUrl>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Configuration" Version="2.2.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="2.2.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.CommandLine" Version="2.2.0" />
<PackageReference Include="Microsoft.Extensions.Configuration" Version="3.1.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="3.1.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.CommandLine" Version="3.1.0" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion test/AK.PfxTool.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp2.2</TargetFramework>
<TargetFramework>netcoreapp3.1</TargetFramework>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
Expand Down