-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
26 lines (26 loc) · 1.02 KB
/
Copy pathDirectory.Build.props
File metadata and controls
26 lines (26 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<Project>
<PropertyGroup>
<LangVersion>10.0</LangVersion>
<Nullable>enable</Nullable>
<PlatformTarget>AnyCPU</PlatformTarget>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<Company>Frahan</Company>
<Product>Frahan StonePack</Product>
<!-- Public / Zenodo release version = 0.1.0 (everything aligned). Development
tracking uses the lower decimals going forward (0.1.x patch, 0.1.0.N build). -->
<Version>0.1.1</Version>
<AssemblyVersion>0.1.1.0</AssemblyVersion>
<FileVersion>0.1.1.0</FileVersion>
</PropertyGroup>
<!-- Debug symbols: portable PDB always; embed in Debug for VS Code attach debugging -->
<PropertyGroup Condition="'$(Configuration)'=='Debug'">
<DebugType>portable</DebugType>
<DebugSymbols>true</DebugSymbols>
<Optimize>false</Optimize>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Release'">
<DebugType>none</DebugType>
<Optimize>true</Optimize>
</PropertyGroup>
</Project>