-
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.23 KB
/
Directory.Build.props
File metadata and controls
26 lines (26 loc) · 1.23 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 Label="Build">
<LangVersion>latest</LangVersion>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<AnalysisLevel>latest</AnalysisLevel>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<RootNamespace>Fossa.$(MSBuildProjectName.Replace(" ", "_"))</RootNamespace>
<AssemblyName>Fossa.$(MSBuildProjectName)</AssemblyName>
<NoWarn>$(NoWarn);3391</NoWarn>
</PropertyGroup>
<PropertyGroup Label="Package">
<Authors>Tigran TIKSN Torosyan</Authors>
<Company>Tigran TIKSN Torosyan</Company>
<Copyright>Copyright © Tigran TIKSN Torosyan. All rights Reserved</Copyright>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/fossa-app/Bridge</PackageProjectUrl>
<PackageIcon>Icon.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/fossa-app/Bridge.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageReleaseNotes>https://github.com/fossa-app/Bridge/releases</PackageReleaseNotes>
</PropertyGroup>
</Project>