|
| 1 | +<Project Sdk="Microsoft.NET.Sdk"> |
| 2 | + |
| 3 | + <PropertyGroup> |
| 4 | + <TargetFrameworks>net8.0;netstandard2.0;net462</TargetFrameworks> |
| 5 | + <EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild> |
| 6 | + <AnalysisMode>All</AnalysisMode> |
| 7 | + <LangVersion>12.0</LangVersion> |
| 8 | + <ImplicitUsings>enable</ImplicitUsings> |
| 9 | + <Nullable>enable</Nullable> |
| 10 | + <GeneratePackageOnBuild>true</GeneratePackageOnBuild> |
| 11 | + <Title>CacheManager.Api</Title> |
| 12 | + <Authors>MHKarami97</Authors> |
| 13 | + <Description>Easy Cache Manager Api</Description> |
| 14 | + <Copyright>https://github.com/MHKarami97/CacheManager</Copyright> |
| 15 | + <PackageProjectUrl>https://github.com/MHKarami97/CacheManager</PackageProjectUrl> |
| 16 | + <PackageIcon>icon.jpg</PackageIcon> |
| 17 | + <RepositoryUrl>https://github.com/MHKarami97/CacheManager</RepositoryUrl> |
| 18 | + <RepositoryType>public</RepositoryType> |
| 19 | + <PackageTags>CacheManager.Api</PackageTags> |
| 20 | + <PackageReleaseNotes>CacheManager.Api</PackageReleaseNotes> |
| 21 | + <AssemblyVersion>2.0.0</AssemblyVersion> |
| 22 | + <FileVersion>2.0.0</FileVersion> |
| 23 | + <Version>2.0.0</Version> |
| 24 | + <SignAssembly>true</SignAssembly> |
| 25 | + <AssemblyOriginatorKeyFile>..\CacheManager\MHKarami97.snk</AssemblyOriginatorKeyFile> |
| 26 | + <PublicSign>true</PublicSign> |
| 27 | + <PackageId>EasyMultiCacheManager.Api</PackageId> |
| 28 | + <PackageReadmeFile>README.md</PackageReadmeFile> |
| 29 | + <ApplicationIcon>..\icon.ico</ApplicationIcon> |
| 30 | + <PackageLicenseFile>LICENSE.txt</PackageLicenseFile> |
| 31 | + <IncludeContentInPack>true</IncludeContentInPack> |
| 32 | + </PropertyGroup> |
| 33 | + |
| 34 | + <PropertyGroup Condition=" '$(Configuration)' == 'Debug' "> |
| 35 | + <DocumentationFile>bin\Debug\CacheManager.Api.xml</DocumentationFile> |
| 36 | + </PropertyGroup> |
| 37 | + |
| 38 | + <PropertyGroup Condition=" '$(Configuration)' == 'Release' "> |
| 39 | + <DocumentationFile>bin\Release\CacheManager.Api.xml</DocumentationFile> |
| 40 | + </PropertyGroup> |
| 41 | + |
| 42 | + <ItemGroup> |
| 43 | + <ProjectReference Include="..\CacheManager\CacheManager.csproj"/> |
| 44 | + </ItemGroup> |
| 45 | + |
| 46 | + <ItemGroup> |
| 47 | + <None Include="..\icon.jpg"> |
| 48 | + <Pack>true</Pack> |
| 49 | + <PackagePath></PackagePath> |
| 50 | + <Visible>True</Visible> |
| 51 | + </None> |
| 52 | + <None Include="..\LICENSE.txt"> |
| 53 | + <Pack>true</Pack> |
| 54 | + <PackagePath></PackagePath> |
| 55 | + <Visible>True</Visible> |
| 56 | + </None> |
| 57 | + <None Include="..\README.md"> |
| 58 | + <Pack>true</Pack> |
| 59 | + <PackagePath></PackagePath> |
| 60 | + <Visible>True</Visible> |
| 61 | + </None> |
| 62 | + </ItemGroup> |
| 63 | + |
| 64 | + <ItemGroup> |
| 65 | + <PackageReference Include="Flurl.Http" Version="4.0.2"/> |
| 66 | + </ItemGroup> |
| 67 | + |
| 68 | +</Project> |
0 commit comments