Skip to content

Commit

Permalink
fix(csproj): improve csproj
Browse files Browse the repository at this point in the history
  • Loading branch information
MingboPeng committed Mar 26, 2024
1 parent f36f098 commit 20e2326
Showing 1 changed file with 22 additions and 25 deletions.
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>

0 comments on commit 20e2326

Please sign in to comment.