Fix up csproj for build

This commit is contained in:
Adam Hathcock
2024-05-22 09:46:09 +01:00
parent 802a199901
commit ae8133ad2d
@@ -3,13 +3,12 @@
<PropertyGroup>
<Version>0.1.0</Version>
<TargetFramework>netstandard2.0</TargetFramework>
<ProjectGuid>{12344228-91F4-4502-9595-39584E5ABB34}</ProjectGuid>
<LangVersion>Latest</LangVersion>
<Nullable>enable</Nullable>
<Authors>Speckle</Authors>
<Description></Description>
<RootNamespace>Speckle.ProxyGenerator</RootNamespace>
<Title>ProxyInterfaceGenerator</Title>
<Title>Speckle.ProxyGenerator</Title>
<PackageId>Speckle.ProxyGenerator</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>
@@ -20,7 +19,6 @@
<RepositoryUrl>https://github.com/specklesystems/ProxyGenerator</RepositoryUrl>
<PackageReadmeFile>PackageReadme.md</PackageReadmeFile>
<PackageIcon>icon.png</PackageIcon>
<IncludeBuildOutput>false</IncludeBuildOutput>
<EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles>
<CompilerGeneratedFilesOutputPath>$(BaseIntermediateOutputPath)Generated</CompilerGeneratedFilesOutputPath>
<DevelopmentDependency>true</DevelopmentDependency>
@@ -30,10 +28,6 @@
<EnforceExtendedAnalyzerRules>true</EnforceExtendedAnalyzerRules>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
</PropertyGroup>
<ItemGroup>
<None Include="../../resources/icon.png" Pack="true" PackagePath="" />
<None Include="../../PackageReadme.md" Pack="true" PackagePath="" />
@@ -60,12 +54,6 @@
<ProjectCapability Include="DynamicFileNesting" />
</ItemGroup>-->
<ItemGroup>
<Compile Update="ProxyClassesGenerator.AutoMapper.cs">
<DependentUpon>ProxyClassesGenerator.cs</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<None Include="$(OutputPath)\$(AssemblyName).dll" Pack="true" PackagePath="analyzers/dotnet/cs" Visible="false" />
</ItemGroup>