-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
33 lines (28 loc) · 1.09 KB
/
Directory.Build.props
File metadata and controls
33 lines (28 loc) · 1.09 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
<Project>
<!-- Common Properties for All Projects -->
<PropertyGroup>
<!-- Versioning -->
<Version>0.7.0</Version>
<!-- Language Settings -->
<LangVersion>preview</LangVersion>
<Nullable>enable</Nullable>
<!-- Package Metadata -->
<Authors>iyulab</Authors>
<Company>iyulab</Company>
<Owners>iyulab</Owners>
<Copyright>Copyright (c) Iyulab Corporation 2024.</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<!-- Repository Information -->
<PackageProjectUrl>https://github.com/iyulab/FilePrepper</PackageProjectUrl>
<RepositoryUrl>https://github.com/iyulab/FilePrepper.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<!-- Package Assets -->
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageIcon>logo.png</PackageIcon>
</PropertyGroup>
<!-- Package Files (for packable projects) -->
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)README.md" Pack="true" PackagePath="\" />
<None Include="$(MSBuildThisFileDirectory)logo.png" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>