-
Notifications
You must be signed in to change notification settings - Fork 596
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Clean up project files; Fix AnyCPU target actually being x64
- Loading branch information
Showing
16 changed files
with
1,064 additions
and
1,066 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,48 +1,50 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFramework>net6.0-windows10.0.18362.0</TargetFramework> | ||
<RuntimeIdentifier>win-x64</RuntimeIdentifier> | ||
<OutputType>Exe</OutputType> | ||
<RootNamespace>BCU_console</RootNamespace> | ||
<GenerateAssemblyInfo>false</GenerateAssemblyInfo> | ||
<Platforms>AnyCPU;x64;x86</Platforms> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | ||
<OutputPath>..\..\bin\Debug\</OutputPath> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x86'"> | ||
<RuntimeIdentifier>win-x86</RuntimeIdentifier> | ||
<OutputPath>..\..\bin\Debug\</OutputPath> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> | ||
<RuntimeIdentifier>win-x64</RuntimeIdentifier> | ||
<OutputPath>..\..\bin\Debug\</OutputPath> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | ||
<OutputPath>..\..\bin\Release\</OutputPath> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'"> | ||
<RuntimeIdentifier>win-x86</RuntimeIdentifier> | ||
<OutputPath>..\..\bin\Release\</OutputPath> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> | ||
<RuntimeIdentifier>win-x64</RuntimeIdentifier> | ||
<OutputPath>..\..\bin\Release\</OutputPath> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<ApplicationManifest>Properties\app.manifest</ApplicationManifest> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Compile Include="..\GlobalAssemblyInfo.cs"> | ||
<Link>Properties\GlobalAssemblyInfo.cs</Link> | ||
</Compile> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\UninstallTools\UninstallTools.csproj" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Include="..\Licence.licenseheader"> | ||
<Link>Licence.licenseheader</Link> | ||
</None> | ||
</ItemGroup> | ||
<PropertyGroup> | ||
<TargetFramework>net6.0-windows10.0.18362.0</TargetFramework> | ||
<RuntimeIdentifier>win-x64</RuntimeIdentifier> | ||
<OutputType>Exe</OutputType> | ||
<RootNamespace>BCU_console</RootNamespace> | ||
<GenerateAssemblyInfo>false</GenerateAssemblyInfo> | ||
<Platforms>AnyCPU;x64;x86</Platforms> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | ||
<RuntimeIdentifier></RuntimeIdentifier> | ||
<OutputPath>..\..\bin\Debug\AnyCPU\</OutputPath> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x86'"> | ||
<RuntimeIdentifier>win-x86</RuntimeIdentifier> | ||
<OutputPath>..\..\bin\Debug\</OutputPath> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> | ||
<RuntimeIdentifier>win-x64</RuntimeIdentifier> | ||
<OutputPath>..\..\bin\Debug\</OutputPath> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | ||
<RuntimeIdentifier></RuntimeIdentifier> | ||
<OutputPath>..\..\bin\Release\AnyCPU\</OutputPath> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'"> | ||
<RuntimeIdentifier>win-x86</RuntimeIdentifier> | ||
<OutputPath>..\..\bin\Release\</OutputPath> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> | ||
<RuntimeIdentifier>win-x64</RuntimeIdentifier> | ||
<OutputPath>..\..\bin\Release\</OutputPath> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<ApplicationManifest>Properties\app.manifest</ApplicationManifest> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Compile Include="..\GlobalAssemblyInfo.cs"> | ||
<Link>Properties\GlobalAssemblyInfo.cs</Link> | ||
</Compile> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\UninstallTools\UninstallTools.csproj" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Include="..\Licence.licenseheader"> | ||
<Link>Licence.licenseheader</Link> | ||
</None> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.