Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(csproj): improve csproj #40

Merged
merged 1 commit into from
Mar 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 22 additions & 25 deletions src/LadybugDisplaySchema/LadybugDisplaySchema.csproj
Original file line number Diff line number Diff line change
@@ -1,28 +1,25 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netstandard2.0;net452</TargetFrameworks>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<Version>0.0.2.24</Version>
<Authors>Ladybug Tools</Authors>
<Description>This is the .Net version of Ladybug Display Schema</Description>
<Copyright>Copyright © 2024 Ladybug Tools LLC</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://www.ladybug.tools/honeybee-schema</PackageProjectUrl>
<RepositoryUrl>https://github.com/ladybug-tools/honeybee-schema-dotnet</RepositoryUrl>
<!-- <GeneratePackageOnBuild>true</GeneratePackageOnBuild> -->
<!-- <SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>HoneybeeSchema.snk</AssemblyOriginatorKeyFile> -->
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<NoWarn>1701;1702;1591;0108;0472</NoWarn>
<DebugType>none</DebugType>
<DebugSymbols>false</DebugSymbols>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="LBT.Newtonsoft.Json" Version="12.0.3.23910" PrivateAssets="all"/>
<PackageReference Include="System.ComponentModel.Annotations" Version="5.0.0" />
<PackageReference Include="System.ValueTuple" Version="4.5.0" />
</ItemGroup>
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net48</TargetFrameworks>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<Version>0.0.2.24</Version>
<Authors>Ladybug Tools</Authors>
<Description>This is the .Net version of Ladybug Display Schema</Description>
<Copyright>Copyright © 2024 Ladybug Tools LLC</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://www.ladybug.tools/honeybee-schema</PackageProjectUrl>
<RepositoryUrl>https://github.com/ladybug-tools/honeybee-schema-dotnet</RepositoryUrl>
</PropertyGroup>

<PropertyGroup Condition="$(Configuration.StartsWith(`Release`))">
<NoWarn>1701;1702;1591;0108;0472</NoWarn>
<DebugType>none</DebugType>
<DebugSymbols>false</DebugSymbols>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="LBT.Newtonsoft.Json" Version="12.0.3.23910" PrivateAssets="all"/>
<PackageReference Include="System.ComponentModel.Annotations" Version="5.0.0" />
<PackageReference Include="System.ValueTuple" Version="4.5.0" />
</ItemGroup>
</Project>
Loading