Skip to content

Commit

Permalink
1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Jens Krumsieck committed Dec 27, 2019
1 parent 93b7cec commit 27b289c
Show file tree
Hide file tree
Showing 5 changed files with 47 additions and 5 deletions.
14 changes: 12 additions & 2 deletions CHN-Tool.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,34 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.29613.14
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CHN.Shared", "CHN.Shared\CHN.Shared.csproj", "{B298311D-54E0-4886-A51C-C6FB4D4FD33C}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CHN.Shared", "CHN.Shared\CHN.Shared.csproj", "{B298311D-54E0-4886-A51C-C6FB4D4FD33C}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CHN_Tool", "CHN_Tool\CHN_Tool.csproj", "{DF9FCDE6-B8E2-4445-81A5-6C3F45425D0E}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CHN_Tool", "CHN_Tool\CHN_Tool.csproj", "{DF9FCDE6-B8E2-4445-81A5-6C3F45425D0E}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Debug|x64 = Debug|x64
Release|Any CPU = Release|Any CPU
Release|x64 = Release|x64
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{B298311D-54E0-4886-A51C-C6FB4D4FD33C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{B298311D-54E0-4886-A51C-C6FB4D4FD33C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B298311D-54E0-4886-A51C-C6FB4D4FD33C}.Debug|x64.ActiveCfg = Debug|x64
{B298311D-54E0-4886-A51C-C6FB4D4FD33C}.Debug|x64.Build.0 = Debug|x64
{B298311D-54E0-4886-A51C-C6FB4D4FD33C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B298311D-54E0-4886-A51C-C6FB4D4FD33C}.Release|Any CPU.Build.0 = Release|Any CPU
{B298311D-54E0-4886-A51C-C6FB4D4FD33C}.Release|x64.ActiveCfg = Release|x64
{B298311D-54E0-4886-A51C-C6FB4D4FD33C}.Release|x64.Build.0 = Release|x64
{DF9FCDE6-B8E2-4445-81A5-6C3F45425D0E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{DF9FCDE6-B8E2-4445-81A5-6C3F45425D0E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{DF9FCDE6-B8E2-4445-81A5-6C3F45425D0E}.Debug|x64.ActiveCfg = Debug|Any CPU
{DF9FCDE6-B8E2-4445-81A5-6C3F45425D0E}.Debug|x64.Build.0 = Debug|Any CPU
{DF9FCDE6-B8E2-4445-81A5-6C3F45425D0E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{DF9FCDE6-B8E2-4445-81A5-6C3F45425D0E}.Release|Any CPU.Build.0 = Release|Any CPU
{DF9FCDE6-B8E2-4445-81A5-6C3F45425D0E}.Release|x64.ActiveCfg = Release|Any CPU
{DF9FCDE6-B8E2-4445-81A5-6C3F45425D0E}.Release|x64.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
1 change: 1 addition & 0 deletions CHN.Shared/CHN.Shared.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<Platforms>AnyCPU;x64</Platforms>
</PropertyGroup>

</Project>
17 changes: 17 additions & 0 deletions CHN_Tool/CHN_Tool.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,33 @@
<OutputType>WinExe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<UseWindowsForms>true</UseWindowsForms>
<ApplicationIcon>Resources\chn_icon.ico</ApplicationIcon>
<Version>1.1.0</Version>
<Authors>Jens Krumsieck</Authors>
<Company>Jens Krumsieck</Company>
<PackageProjectUrl>https://github.com/JensKrumsieck/CHN-Tool</PackageProjectUrl>
<PackageIcon>chn_icon.ico</PackageIcon>
<RepositoryUrl>https://github.com/JensKrumsieck/CHN-Tool</RepositoryUrl>
<NoWin32Manifest>true</NoWin32Manifest>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>

<ItemGroup>
<None Remove="Resources\chn_icon.ico" />
<None Include="Resources\chn_icon.ico">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>

<ItemGroup>
<Resource Include="Resources\chn_icon.ico" />
</ItemGroup>


<ItemGroup>
<ProjectReference Include="..\CHN.Shared\CHN.Shared.csproj" />
</ItemGroup>
Expand Down
3 changes: 0 additions & 3 deletions CHN_Tool/Program.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace CHN_Tool
Expand Down
17 changes: 17 additions & 0 deletions CHN_Tool/Properties/PublishProfiles/Win-x64.pubxml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
https://go.microsoft.com/fwlink/?LinkID=208121.
-->
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<PublishProtocol>FileSystem</PublishProtocol>
<Configuration>Release</Configuration>
<Platform>Any CPU</Platform>
<TargetFramework>netcoreapp3.1</TargetFramework>
<PublishDir>bin\Release\netcoreapp3.1\win-x64\publish\</PublishDir>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<SelfContained>false</SelfContained>
<PublishSingleFile>True</PublishSingleFile>
<PublishReadyToRun>True</PublishReadyToRun>
</PropertyGroup>
</Project>

0 comments on commit 27b289c

Please sign in to comment.