-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
24 lines (21 loc) · 958 Bytes
/
Directory.Build.props
File metadata and controls
24 lines (21 loc) · 958 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
<Project>
<PropertyGroup>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
<Version Condition="'$(Version)' == ''">0.0.0-local</Version>
</PropertyGroup>
<PropertyGroup>
<PackageLicenseExpression>MPL-2.0</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Authors>Freeesia</Authors>
<Description>BergamotTranslatorSharp is a tool to translate the text on the screen.</Description>
<PackageProjectUrl>https://github.com/Freeesia/BergamotTranslatorSharp</PackageProjectUrl>
<RepositoryUrl>https://github.com/Freeesia/BergamotTranslatorSharp</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>translation api i18n language translator</PackageTags>
</PropertyGroup>
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)README.md" Pack="true" PackagePath="\" Visible="false" />
</ItemGroup>
</Project>