-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
47 lines (43 loc) · 1.82 KB
/
Directory.Build.props
File metadata and controls
47 lines (43 loc) · 1.82 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<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>
</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/Messaging</PackageProjectUrl>
<PackageIcon>Icon.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/fossa-app/Messaging.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageReleaseNotes>https://github.com/fossa-app/Messaging/releases</PackageReleaseNotes>
</PropertyGroup>
<ItemGroup Label="Package References">
<PackageReference Include="Microsoft.VisualStudio.Threading.Analyzers" PrivateAssets="all" />
<PackageReference Include="MinVer" PrivateAssets="all" />
</ItemGroup>
<ItemGroup>
<Using Include="LanguageExt" />
<Using Include="LanguageExt.Common" />
<Using Include="LanguageExt.Prelude">
<Static>True</Static>
</Using>
<Using Include="LanguageExt.Parsec" />
<Using Include="LanguageExt.Parsec.Char">
<Static>True</Static>
</Using>
<Using Include="LanguageExt.Parsec.Prim">
<Static>True</Static>
</Using>
</ItemGroup>
</Project>