|
22 | 22 | <Deterministic>(DEPENDENT ON OUTPUT TYPE)</Deterministic> |
23 | 23 | <CopyLocalLockFileAssemblies>(DEPENDENT ON OUTPUT TYPE)</CopyLocalLockFileAssemblies> |
24 | 24 | <ProduceReferenceAssembly>(DEPENDENT ON OUTPUT TYPE)</ProduceReferenceAssembly> |
25 | | - <PublishDir>bin\publish\$(RuntimeIdentifier)-$(Configuration.ToLower())\</PublishDir> |
| 25 | + <PublishDir>bin\publish\$(RuntimeIdentifier.ToLower())-$(Configuration.ToLower())\</PublishDir> |
26 | 26 |
|
27 | 27 | - STATIC OVERRIDABLE: |
28 | 28 | <Platforms>x64</Platforms> |
|
31 | 31 | <PublishSingleFile>true</PublishSingleFile> |
32 | 32 |
|
33 | 33 | - SPECIAL: |
34 | | - <OutputPath>bin\$(Configuration.ToLower())\$(RuntimeIdentifier.ToLower() || "portable")</OutputPath> |
| 34 | + <OutputPath>bin\$(Configuration.ToLower())</OutputPath> |
35 | 35 | <Authors>VariableVixen[, $(Authors)]</Authors> |
36 | 36 | <ContinuousIntegrationBuild>(AUTOMATICALLY ENABLED ON KNOWN CI SYSTEMS)</ContinuousIntegrationBuild> |
37 | 37 | <DebugSymbols>(DEPENDENT ON BUILD CONFIGURATION)</DebugSymbols> |
|
69 | 69 | <ImplicitUsings>false</ImplicitUsings> |
70 | 70 | <NoWarn>CA1805,CA1852,CA1707,$(NoWarn)</NoWarn> |
71 | 71 | <PathMap>$(SolutionDir)=./</PathMap> |
| 72 | + <OutputPath>bin\$(Configuration.ToLower())</OutputPath> |
72 | 73 | </PropertyGroup> |
73 | 74 |
|
74 | | - <Choose> |
75 | | - <When Condition=" '$(RuntimeIdentifier)' == '' "> |
76 | | - <PropertyGroup> |
77 | | - <OutputPath>bin\$(Configuration.ToLower())\portable</OutputPath> |
78 | | - </PropertyGroup> |
79 | | - </When> |
80 | | - <Otherwise> |
81 | | - <PropertyGroup> |
82 | | - <OutputPath>bin\$(Configuration.ToLower())\$(RuntimeIdentifier.ToLower())</OutputPath> |
83 | | - </PropertyGroup> |
84 | | - </Otherwise> |
85 | | - </Choose> |
86 | | - |
87 | 75 | <PropertyGroup> |
88 | 76 | <PublishSingleFile Condition=" '$(PublishSingleFile)' == '' ">true</PublishSingleFile> |
89 | 77 | <Copyright Condition=" '$(Copyright)' == '' ">Copyleft $(Authors)</Copyright> |
|
93 | 81 | <TargetFramework Condition=" '$(TargetFramework)' == '' ">net9</TargetFramework> |
94 | 82 | <AssemblyVersion Condition=" '$(AssemblyVersion)' == '' ">$(Version)</AssemblyVersion> |
95 | 83 | <AssemblyFileVersion Condition=" '$(AssemblyFileVersion)' == '' ">$(AssemblyVersion)</AssemblyFileVersion> |
96 | | - </PropertyGroup> |
97 | | - |
98 | | - <PropertyGroup Condition=" '$(PublishDir)' == '' "> |
99 | | - <PublishDir>bin\publish\$(RuntimeIdentifier)-$(Configuration.ToLower())\</PublishDir> |
| 84 | + <PublishDir Condition=" '$(PublishDir)' == '' ">bin\publish\$(RuntimeIdentifier.ToLower())-$(Configuration.ToLower())\</PublishDir> |
100 | 85 | </PropertyGroup> |
101 | 86 |
|
102 | 87 | <Choose> |
|
0 commit comments