52 lines
2.4 KiB
XML
52 lines
2.4 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<Version>0.0.2</Version>
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
<LangVersion>9</LangVersion>
|
|
<Nullable>enable</Nullable>
|
|
<Authors>Stef Heyenrath</Authors>
|
|
<Description></Description>
|
|
<Title>ProxyInterfaceGenerator</Title>
|
|
<PackageId>ProxyInterfaceGenerator</PackageId>
|
|
<Description>This project uses Source Generation to generate an interface and a Proxy class for classes. This makes it possible to wrap external classes which do not have an interface, in a Proxy class which makes it easier to Mock and use DI.</Description>
|
|
<PackageTags>class;interface;proxy;SourceGenerator;Analyzer;Generation;Generate;wrap</PackageTags>
|
|
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
<PackageReleaseNotes>See ReleaseNotes.md</PackageReleaseNotes>
|
|
<PackageProjectUrl>https://github.com/StefH/ProxyInterfaceGenerator</PackageProjectUrl>
|
|
<RepositoryType>git</RepositoryType>
|
|
<RepositoryUrl>https://github.com/StefH/ProxyInterfaceGenerator</RepositoryUrl>
|
|
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
<ProjectGuid>{12344228-91F4-4502-9595-39584E5ABB34}</ProjectGuid>
|
|
|
|
<IncludeBuildOutput>false</IncludeBuildOutput>
|
|
<EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles>
|
|
<CompilerGeneratedFilesOutputPath>$(BaseIntermediateOutputPath)Generated</CompilerGeneratedFilesOutputPath>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="AutoMapper" Version="10.1.1" />
|
|
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="3.3.2">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="Microsoft.CodeAnalysis.Common" Version="3.10.0" PrivateAssets="all" />
|
|
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="3.10.0" PrivateAssets="all" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="bin\Debug\netstandard2.0\\ProxyInterfaceGenerator.dll" />
|
|
<None Remove="bin\Release\netstandard2.0\\ProxyInterfaceGenerator.dll" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="$(OutputPath)\$(AssemblyName).dll" Pack="true" PackagePath="analyzers/dotnet/cs" Visible="false" />
|
|
</ItemGroup>
|
|
|
|
</Project> |