Skip to content

Commit

Permalink
x64 configurations
Browse files Browse the repository at this point in the history
  • Loading branch information
Suplanus committed Mar 14, 2024
1 parent 95daa39 commit 88748ff
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 10 deletions.
12 changes: 6 additions & 6 deletions src/GitHubReleaser.sln
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GitHubReleaser", "GitHubRel
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
Release|x64 = Release|x64
Debug|x64 = Debug|x64
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{EEF80A13-60C4-481F-A254-D281EE5450BE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{EEF80A13-60C4-481F-A254-D281EE5450BE}.Debug|Any CPU.Build.0 = Debug|Any CPU
{EEF80A13-60C4-481F-A254-D281EE5450BE}.Release|Any CPU.ActiveCfg = Release|Any CPU
{EEF80A13-60C4-481F-A254-D281EE5450BE}.Release|Any CPU.Build.0 = Release|Any CPU
{EEF80A13-60C4-481F-A254-D281EE5450BE}.Release|x64.ActiveCfg = Release|x64
{EEF80A13-60C4-481F-A254-D281EE5450BE}.Release|x64.Build.0 = Release|x64
{EEF80A13-60C4-481F-A254-D281EE5450BE}.Debug|x64.ActiveCfg = Debug|x64
{EEF80A13-60C4-481F-A254-D281EE5450BE}.Debug|x64.Build.0 = Debug|x64
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
12 changes: 8 additions & 4 deletions src/GitHubReleaser/GitHubReleaser.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,8 @@
<AssemblyVersion>1.0.3.104</AssemblyVersion>
<FileVersion>1.0.3.104</FileVersion>
<TargetFramework>net7.0</TargetFramework>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DebugType>pdbonly</DebugType>
<DebugSymbols>true</DebugSymbols>
<Configurations>Release;Debug</Configurations>
<Platforms>x64</Platforms>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net48|AnyCPU'">
<ShouldCreateLogs>True</ShouldCreateLogs>
Expand All @@ -25,6 +23,12 @@
<AssemblyFileVersionSettings>None.None.None.Increment</AssemblyFileVersionSettings>
<AssemblyInfoVersionSettings>None.None.None.Increment</AssemblyInfoVersionSettings>
<PrimaryVersionType>AssemblyVersionAttribute</PrimaryVersionType>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
<OutputPath>bin\Debug\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
<OutputPath>bin\Release\</OutputPath>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit 88748ff

Please sign in to comment.