-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
46 additions
and
48 deletions.
There are no files selected for viewing
44 changes: 21 additions & 23 deletions
44
Biwen.AutoClassGen.Attributes/Biwen.AutoClassGen.Attributes.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,34 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>netstandard2.0</TargetFramework> | ||
<PackageVersion>1.1.0.2</PackageVersion> | ||
<PackageProjectUrl>https://github.com/vipwan/Biwen.AutoClassGen</PackageProjectUrl> | ||
<Authors>万雅虎</Authors> | ||
<RepositoryUrl>https://github.com/vipwan/Biwen.AutoClassGen</RepositoryUrl> | ||
<Title>Biwen.AutoClassGen</Title> | ||
<Description>Biwen.AutoClassGen</Description> | ||
<Copyright>MIT</Copyright> | ||
<PackageReadmeFile>README.md</PackageReadmeFile> | ||
<PackageTags>Roslyn,SourceGenerator,QuickApi</PackageTags> | ||
<PackageReleaseNotes>SG</PackageReleaseNotes> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
<NoWarn>1573,1591,1712</NoWarn> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<TargetFramework>netstandard2.0</TargetFramework> | ||
<PackageVersion>1.1.0.2</PackageVersion> | ||
<PackageProjectUrl>https://github.com/vipwan/Biwen.AutoClassGen</PackageProjectUrl> | ||
<Authors>万雅虎</Authors> | ||
<RepositoryUrl>https://github.com/vipwan/Biwen.AutoClassGen</RepositoryUrl> | ||
<Title>Biwen.AutoClassGen</Title> | ||
<Description>Biwen.AutoClassGen</Description> | ||
<Copyright>MIT</Copyright> | ||
<PackageReadmeFile>README.md</PackageReadmeFile> | ||
<PackageTags>Roslyn,SourceGenerator,QuickApi</PackageTags> | ||
<PackageReleaseNotes>SG</PackageReleaseNotes> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
<NoWarn>1573,1591,1712</NoWarn> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<None Include="..\.editorconfig" Link=".editorconfig" /> | ||
<None Include="..\README.md"> | ||
<Pack>True</Pack> | ||
<PackagePath>\</PackagePath> | ||
</None> | ||
<None Include="..\.editorconfig" Link=".editorconfig" /> | ||
<None Include="..\README.md"> | ||
<Pack>True</Pack> | ||
<PackagePath>\</PackagePath> | ||
</None> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Biwen.AutoClassGen" Version="1.1.0.2" PrivateAssets="contentfiles;analyzers" /> | ||
<PackageReference Include="Biwen.AutoClassGen" Version="1.1.0.2" PrivateAssets="contentfiles;analyzers" /> | ||
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.507"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
</ItemGroup> | ||
|
||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 11 additions & 10 deletions
21
Biwen.AutoClassGen.TestConsole/Biwen.AutoClassGen.TestConsole.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,15 @@ | ||
<Project Sdk="Microsoft.NET.Sdk.Web"> | ||
|
||
<PropertyGroup> | ||
<OutputType>Exe</OutputType> | ||
<TargetFramework>net6.0</TargetFramework> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<Nullable>enable</Nullable> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<OutputType>Exe</OutputType> | ||
<TargetFramework>net6.0</TargetFramework> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<Nullable>enable</Nullable> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\Biwen.AutoClassGen.Attributes\Biwen.AutoClassGen.Attributes.csproj" /> | ||
<ProjectReference Include="..\Biwen.AutoClassGen.Gen\Biwen.AutoClassGen.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\Biwen.AutoClassGen.Attributes\Biwen.AutoClassGen.Attributes.csproj" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
using Biwen.AutoClassGen.TestConsole.Interfaces; | ||
|
||
namespace Biwen.AutoClassGen.Models; | ||
|
||
|
||
/// <summary> | ||
/// 分页请求 | ||
/// </summary> | ||
[AutoGen("QueryRequest", "Biwen.AutoClassGen.Models")] | ||
[AutoGen("Query2Request", "Biwen.AutoClassGen.Models")] | ||
public interface IQueryRequest : IPager, IQuery | ||
namespace Biwen.AutoClassGen.Models | ||
{ | ||
} | ||
/// <summary> | ||
/// 分页请求 | ||
/// </summary> | ||
[AutoGen("QueryRequest", "Biwen.AutoClassGen.Models")] | ||
[AutoGen("Query2Request", "Biwen.AutoClassGen.Models")] | ||
public interface IQueryRequest : IPager, IQuery | ||
{ | ||
} | ||
|
||
[AutoGen("TenantRealRequest", "Biwen.AutoClassGen.Models")] | ||
public interface ITenantRealRequest : ITenantRequest | ||
{ | ||
[AutoGen("TenantRealRequest", "Biwen.AutoClassGen.Models")] | ||
public interface ITenantRealRequest : ITenantRequest | ||
{ | ||
|
||
} | ||
} | ||
} |