Browse Source
Merge pull request #951 from colinin/fix-common-props
fix: fixed common.props
pull/955/head
yx lin
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with
12 additions and
15 deletions
-
NuGet.Config
-
aspnet-core/NuGet.Config
-
aspnet-core/templates/PackageName.CompanyName.ProjectName.csproj
-
aspnet-core/templates/content/NuGet.Config
-
aspnet-core/templates/content/common.props
|
|
@ -2,15 +2,11 @@ |
|
|
<configuration> |
|
|
<configuration> |
|
|
<packageSources> |
|
|
<packageSources> |
|
|
<clear /> |
|
|
<clear /> |
|
|
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" /> |
|
|
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" /> |
|
|
<add key="local" value="./aspnet-core/LocalNuget" /> |
|
|
|
|
|
</packageSources> |
|
|
</packageSources> |
|
|
<packageSourceMapping> |
|
|
<packageSourceMapping> |
|
|
<packageSource key="nuget.org"> |
|
|
<packageSource key="nuget.org"> |
|
|
<package pattern="*" /> |
|
|
<package pattern="*" /> |
|
|
</packageSource> |
|
|
</packageSource> |
|
|
<packageSource key="local"> |
|
|
|
|
|
<package pattern="LINGYUN.*" /> |
|
|
|
|
|
</packageSource> |
|
|
|
|
|
</packageSourceMapping> |
|
|
</packageSourceMapping> |
|
|
</configuration> |
|
|
</configuration> |
|
|
@ -1,6 +1,12 @@ |
|
|
<?xml version="1.0" encoding="utf-8"?> |
|
|
<?xml version="1.0" encoding="utf-8"?> |
|
|
<configuration> |
|
|
<configuration> |
|
|
<packageSources> |
|
|
<packageSources> |
|
|
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" /> |
|
|
<clear /> |
|
|
</packageSources> |
|
|
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" /> |
|
|
|
|
|
</packageSources> |
|
|
|
|
|
<packageSourceMapping> |
|
|
|
|
|
<packageSource key="nuget.org"> |
|
|
|
|
|
<package pattern="*" /> |
|
|
|
|
|
</packageSource> |
|
|
|
|
|
</packageSourceMapping> |
|
|
</configuration> |
|
|
</configuration> |
|
|
@ -3,7 +3,7 @@ |
|
|
<TargetFramework>net8.0</TargetFramework> <!-- 或其他适合的框架 --> |
|
|
<TargetFramework>net8.0</TargetFramework> <!-- 或其他适合的框架 --> |
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> |
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> |
|
|
<PackageId>LINGYUN.Abp.MicroService.Templates</PackageId> |
|
|
<PackageId>LINGYUN.Abp.MicroService.Templates</PackageId> |
|
|
<Version>8.1.1</Version> |
|
|
<Version>8.1.1.1</Version> |
|
|
<Authors>colin.in@foxmail.com</Authors> |
|
|
<Authors>colin.in@foxmail.com</Authors> |
|
|
<Description>Abp framework micro-service template</Description> |
|
|
<Description>Abp framework micro-service template</Description> |
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression> |
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression> |
|
|
|
|
|
@ -2,7 +2,7 @@ |
|
|
<configuration> |
|
|
<configuration> |
|
|
<packageSources> |
|
|
<packageSources> |
|
|
<clear /> |
|
|
<clear /> |
|
|
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" /> |
|
|
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" /> |
|
|
</packageSources> |
|
|
</packageSources> |
|
|
<packageSourceMapping> |
|
|
<packageSourceMapping> |
|
|
<packageSource key="nuget.org"> |
|
|
<packageSource key="nuget.org"> |
|
|
|
|
|
@ -31,11 +31,6 @@ |
|
|
<None Remove="Modules\**" /> |
|
|
<None Remove="Modules\**" /> |
|
|
</ItemGroup> |
|
|
</ItemGroup> |
|
|
|
|
|
|
|
|
<ItemGroup> |
|
|
|
|
|
<Content Include="**\*" Exclude="bin\**;obj\**;LocalNuget\**" /> |
|
|
|
|
|
<Compile Remove="**\*" /> |
|
|
|
|
|
</ItemGroup> |
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> |
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> |
|
|
<OutputPath>$(SolutionDir)LocalNuget</OutputPath> |
|
|
<OutputPath>$(SolutionDir)LocalNuget</OutputPath> |
|
|
</PropertyGroup> |
|
|
</PropertyGroup> |
|
|
|