55 lines
2.3 KiB
XML
55 lines
2.3 KiB
XML
<Project>
|
|
<PropertyGroup Label="Company Info">
|
|
<Authors>Speckle</Authors>
|
|
<Company>Speckle</Company>
|
|
<Copyright>Copyright (c) AEC Systems Ltd</Copyright>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<LangVersion>latest</LangVersion>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<AnalysisMode>Recommended</AnalysisMode>
|
|
<WarningsAsErrors>true</WarningsAsErrors>
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
<CodeAnalysisTreatWarningsAsErrors>true</CodeAnalysisTreatWarningsAsErrors>
|
|
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<RunAnalyzersDuringLiveAnalysis>False</RunAnalyzersDuringLiveAnalysis>
|
|
<RunAnalyzersDuringBuild>False</RunAnalyzersDuringBuild>
|
|
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
|
|
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
|
|
<IsPackable>false</IsPackable>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
|
|
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<EmbedUntrackedSources>true</EmbedUntrackedSources>
|
|
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
|
|
<PackageTags>speckle</PackageTags>
|
|
<PackageProjectUrl>https://speckle.systems/</PackageProjectUrl>
|
|
<PackageIcon>logo.png</PackageIcon>
|
|
<RepositoryUrl>https://github.com/specklesystems/speckle-sharp</RepositoryUrl>
|
|
<RepositoryType>git</RepositoryType>
|
|
<!-- Expose the repository root to all projects -->
|
|
<RepositoryRoot>$(MSBuildThisFileDirectory)</RepositoryRoot>
|
|
<PublishRepositoryUrl>true</PublishRepositoryUrl>
|
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
|
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
<NoWarn>$(NoWarn);1591;1573</NoWarn>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<None Include="..\..\README.md" Pack="true" PackagePath="\"/>
|
|
<None
|
|
Condition="'$(IsPackable)' == 'true'"
|
|
Include="..\..\logo.png"
|
|
Pack="true"
|
|
PackagePath="\"
|
|
Visible="false"/>
|
|
</ItemGroup>
|
|
</Project>
|