12345678910111213141516171819202122232425262728293031323334353637 |
- <Project Sdk="Microsoft.NET.Sdk">
-
- <PropertyGroup>
- <TargetFramework>netstandard2.0</TargetFramework>
- <LangVersion>7.1</LangVersion>
- <RootNamespace>Lunar</RootNamespace>
- <GenerateDocumentationFile>True</GenerateDocumentationFile>
- <PackageId>lunar-csharp</PackageId>
- <PackageVersion>1.5.11</PackageVersion>
- <Title>无依赖的阳历、阴历、道历和佛历工具库</Title>
- <Authors>6tail</Authors>
- <Description>日历、公历(阳历)、农历(阴历、老黄历)、佛历、道历,节假日、星座、儒略日、干支、生肖、节气、节日、彭祖百忌、每日宜忌、吉神宜趋凶煞宜忌、吉神(喜神/福神/财神/阳贵神/阴贵神)方位、胎神方位、冲煞、纳音、星宿、八字、五行、十神、建除十二值星、青龙名堂等十二神、黄道日及吉凶等。</Description>
- <Copyright>Copyright (c) 2022 6tail</Copyright>
- <PackageProjectUrl>https://6tail.cn/calendar/api.html</PackageProjectUrl>
- <RepositoryUrl>https://github.com/6tail/lunar-csharp.git</RepositoryUrl>
- <RepositoryType>git</RepositoryType>
- <PackageTags>日历;公历;阳历;农历;阴历;老黄历;佛历;道历;法定假日</PackageTags>
- <GeneratePackageOnBuild>true</GeneratePackageOnBuild>
- <AssemblyVersion>1.5.11</AssemblyVersion>
- <FileVersion>1.5.11</FileVersion>
- <PackageReleaseNotes>修复八字转阳历存在遗漏的问题。</PackageReleaseNotes>
- <PackageIcon>lunar.png</PackageIcon>
- <PackageLicenseUrl>https://raw.githubusercontent.com/6tail/lunar-csharp/master/LICENSE</PackageLicenseUrl>
- </PropertyGroup>
-
- <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
- <DebugType>none</DebugType>
- </PropertyGroup>
-
- <ItemGroup>
- <None Update="lunar.png">
- <Pack>True</Pack>
- <PackagePath />
- </None>
- </ItemGroup>
-
- </Project>
|