Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
Latest commit
32 lines (27 loc) · 1.4 KB
/
Copy pathDirectory.Build.props
File metadata and controls
32 lines (27 loc) · 1.4 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
<Project>
<!-- Shared build settings for all BitwardenSharp projects. -->
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<!-- Assembly/namespace follows the project file name, not the folder: the folders are
named for the hexagon layer (src/Domain), the assemblies for the product. -->
<RootNamespace>$(MSBuildProjectName.Replace("-","_"))</RootNamespace>
<Deterministic>true</Deterministic>
<Authors>Chrison Simtian</Authors>
<Company>Homelab</Company>
<RepositoryUrl>https://github.com/Chrison-dev/BitwardenSharp</RepositoryUrl>
<PackageProjectUrl>https://github.com/Chrison-dev/BitwardenSharp</PackageProjectUrl>
<RepositoryType>git</RepositoryType>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<!-- Embed symbols in the assembly (GitHub Packages doesn't take .snupkg). -->
<DebugType>embedded</DebugType>
</PropertyGroup>
<!-- Pack the repo-root README into every packable project (PackageReadmeFile above). -->
<ItemGroupCondition="Exists('$(MSBuildThisFileDirectory)README.md')">
<NoneInclude="$(MSBuildThisFileDirectory)README.md"Pack="true"PackagePath="\"Visible="false" />
</ItemGroup>
</Project>