Initial push
This commit is contained in:
49
Directory.Build.props
Normal file
49
Directory.Build.props
Normal file
@@ -0,0 +1,49 @@
|
||||
<Project>
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net9.0</TargetFramework>
|
||||
<LangVersion>13.0</LangVersion>
|
||||
<Nullable>enable</Nullable>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
|
||||
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
||||
<NoWarn>$(NoWarn);CS1591</NoWarn>
|
||||
|
||||
<!-- NuGet Package Properties -->
|
||||
<Authors>David H. Friedel Jr.</Authors>
|
||||
<Company>MarketAlly LLC.</Company>
|
||||
<Product>SqrtSpace SpaceTime</Product>
|
||||
<PackageProjectUrl>https://github.com/sqrtspace/spacetime-dotnet</PackageProjectUrl>
|
||||
<RepositoryUrl>https://github.com/sqrtspace/spacetime-dotnet</RepositoryUrl>
|
||||
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
|
||||
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
|
||||
<Copyright>Copyright (c) 2025 David H. Friedel Jr. and SqrtSpace Contributors</Copyright>
|
||||
<PackageTags>spacetime;memory;optimization;performance;sqrt;linq;checkpointing</PackageTags>
|
||||
<PackageIcon>sqrt.png</PackageIcon>
|
||||
<PackageReadmeFile>README.md</PackageReadmeFile>
|
||||
|
||||
<!-- Versioning -->
|
||||
<VersionPrefix>1.0.1</VersionPrefix>
|
||||
<VersionSuffix Condition="'$(CI)' == 'true' AND '$(GITHUB_REF)' != 'refs/heads/main'">preview.$(GITHUB_RUN_NUMBER)</VersionSuffix>
|
||||
|
||||
<!-- Build Configuration -->
|
||||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
||||
<PublishRepositoryUrl>true</PublishRepositoryUrl>
|
||||
<EmbedUntrackedSources>true</EmbedUntrackedSources>
|
||||
<IncludeSymbols>true</IncludeSymbols>
|
||||
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
|
||||
<ContinuousIntegrationBuild Condition="'$(CI)' == 'true'">true</ContinuousIntegrationBuild>
|
||||
|
||||
<!-- Code Analysis -->
|
||||
<AnalysisLevel>latest-recommended</AnalysisLevel>
|
||||
<EnableNETAnalyzers>true</EnableNETAnalyzers>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All"/>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup Condition="'$(IsPackable)' == 'true'">
|
||||
<None Include="$(MSBuildThisFileDirectory)sqrt.png" Pack="true" PackagePath=""/>
|
||||
<None Include="$(MSBuildThisFileDirectory)README.md" Pack="true" PackagePath=""/>
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
Reference in New Issue
Block a user