forked from idormenco/PolyBool.Net
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSolution.props
22 lines (22 loc) · 828 Bytes
/
Solution.props
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<Project>
<PropertyGroup>
<UpDir>..</UpDir>
<BaseOutputPath>..\..\bin\$(AssemblyName)\</BaseOutputPath>
<BaseIntermediateOutputPath>..\..\obj\$(MSBuildProjectName)\</BaseIntermediateOutputPath>
<RootNamespace>$(MSBuildProjectName.Replace(".","_").Replace("_net",""))</RootNamespace>
<LangVersion>12.0</LangVersion>
<Nullable>enable</Nullable>
<DefineConstants>NULLABLE</DefineConstants>
<ImplicitUsings>disable</ImplicitUsings>
<Company>JC-Soft</Company>
<Authors>Joe Care</Authors>
<Copyright>Copyright © JC-Soft 2024</Copyright>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Debug'">
<Optimize>False</Optimize>
<DebugType>portable</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Release'">
<DebugType>none</DebugType>
</PropertyGroup>
</Project>