-
Notifications
You must be signed in to change notification settings - Fork 0
/
Common.props
37 lines (32 loc) · 1.23 KB
/
Common.props
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
27
28
29
30
31
32
33
34
35
36
37
<Project>
<!--Macros attributes-->
<PropertyGroup>
<CompanyName>AErmilov</CompanyName>
<CurrentDate>$([System.DateTime]::Now.ToString(yyyy.MM.dd))</CurrentDate>
<CurrentYear>$([System.DateTime]::Now.ToString(yyyy))</CurrentYear>
<CommonPrefix>AErmilov.NumbersIntoWords</CommonPrefix>
</PropertyGroup>
<!--Assembly attributes-->
<PropertyGroup>
<Copyright>Copyright $(CurrentYear) © $(CompanyName). All rights reserved</Copyright>
<Authors>$(CompanyName)</Authors>
<Company>$(CompanyName)</Company>
<AssemblyName>$(CommonPrefix).$(MSBuildProjectName)</AssemblyName>
<RootNamespace>$(CommonPrefix).$(MSBuildProjectName)</RootNamespace>
</PropertyGroup>
<!--Related arfitacts-->
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<LangVersion>default</LangVersion>
<EmbedAllSources>true</EmbedAllSources>
<DebugType>embedded</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<!--Syntax and analysis-->
<PropertyGroup>
<Nullable>enable</Nullable>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
</Project>