-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
26 lines (21 loc) · 847 Bytes
/
Directory.Build.props
File metadata and controls
26 lines (21 loc) · 847 Bytes
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>
<TargetFramework>net8.0</TargetFramework>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<IsPackable>False</IsPackable>
<ImplicitUsings>enable</ImplicitUsings>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup>
<CompanyName>P4rpleSky</CompanyName>
<CurrentYear>$([System.DateTime]::Now.ToString(yyyy))</CurrentYear>
<Copyright>Copyright $(CurrentYear) © $(CompanyName). All rights reserved</Copyright>
<Authors>$(CompanyName)</Authors>
<Company>$(CompanyName)</Company>
</PropertyGroup>
<ItemGroup>
<InternalsVisibleTo Include="$(SolutionName).UnitTests" />
</ItemGroup>
</Project>