Skip to content

Commit

Permalink
Add IPv4 Release configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
evandixon committed Sep 24, 2018
1 parent 6f4f3a9 commit 1fa6e58
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
5 changes: 5 additions & 0 deletions Ditto.sln
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ Global
Debug|Any CPU = Debug|Any CPU
Debug-IPv4|Any CPU = Debug-IPv4|Any CPU
Release|Any CPU = Release|Any CPU
Release-IPv4|Any CPU = Release-IPv4|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{B4D93EE6-97DA-43DD-84CB-DCDC3E843BC8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
Expand All @@ -25,12 +26,16 @@ Global
{B4D93EE6-97DA-43DD-84CB-DCDC3E843BC8}.Debug-IPv4|Any CPU.Build.0 = Debug-IPv4|Any CPU
{B4D93EE6-97DA-43DD-84CB-DCDC3E843BC8}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B4D93EE6-97DA-43DD-84CB-DCDC3E843BC8}.Release|Any CPU.Build.0 = Release|Any CPU
{B4D93EE6-97DA-43DD-84CB-DCDC3E843BC8}.Release-IPv4|Any CPU.ActiveCfg = Release-IPv4|Any CPU
{B4D93EE6-97DA-43DD-84CB-DCDC3E843BC8}.Release-IPv4|Any CPU.Build.0 = Release-IPv4|Any CPU
{2E1632CE-3048-4EE7-B7A8-318F3007990D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{2E1632CE-3048-4EE7-B7A8-318F3007990D}.Debug|Any CPU.Build.0 = Debug|Any CPU
{2E1632CE-3048-4EE7-B7A8-318F3007990D}.Debug-IPv4|Any CPU.ActiveCfg = Debug-IPv4|Any CPU
{2E1632CE-3048-4EE7-B7A8-318F3007990D}.Debug-IPv4|Any CPU.Build.0 = Debug-IPv4|Any CPU
{2E1632CE-3048-4EE7-B7A8-318F3007990D}.Release|Any CPU.ActiveCfg = Release|Any CPU
{2E1632CE-3048-4EE7-B7A8-318F3007990D}.Release|Any CPU.Build.0 = Release|Any CPU
{2E1632CE-3048-4EE7-B7A8-318F3007990D}.Release-IPv4|Any CPU.ActiveCfg = Release-IPv4|Any CPU
{2E1632CE-3048-4EE7-B7A8-318F3007990D}.Release-IPv4|Any CPU.Build.0 = Release-IPv4|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
2 changes: 1 addition & 1 deletion Ditto/Ditto.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.0</TargetFramework>
<RuntimeIdentifiers>win-x64;linux-x64;debian.9-x64</RuntimeIdentifiers>
<Configurations>Debug;Release;Debug-IPv4</Configurations>
<Configurations>Debug;Release;Debug-IPv4;Release-IPv4</Configurations>
<LangVersion>7.3</LangVersion>
</PropertyGroup>

Expand Down
7 changes: 5 additions & 2 deletions IrcDotNet/IrcDotNet.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,13 @@
<PackageLicenseUrl>https://github.com/IrcDotNet/IrcDotNet/License.txt</PackageLicenseUrl>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<Description>Library for communicating via Internet Relay Chat (IRC) protocol and its extensions</Description>
<Configurations>Debug;Release;Debug-IPv4</Configurations>
<Configurations>Debug;Release;Debug-IPv4;Release-IPv4</Configurations>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug-IPv4|AnyCPU'">
<PropertyGroup Condition="'$(Configuration)'=='Debug-IPv4'">
<DefineConstants>TRACE;DEBUG_IPV4;NETSTANDARD1_5;IPV4</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Release-IPv4'">
<DefineConstants>TRACE;DEBUG_IPV4;NETSTANDARD1_5;IPV4</DefineConstants>
</PropertyGroup>

Expand Down

0 comments on commit 1fa6e58

Please sign in to comment.