generated from gemstone/gemtem
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changed code targets to .NET7.0 and .NET Standard 2.1 only / General …
…code cleannup
- Loading branch information
1 parent
e4a4e52
commit ad72956
Showing
25 changed files
with
530 additions
and
456 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
<Project> | ||
|
||
<Import Sdk="Microsoft.NET.Sdk" Project="Sdk.props" /> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>netstandard2.1;net7.0</TargetFrameworks> | ||
<RootNamespace>Gemstone.PQDIF</RootNamespace> | ||
<PackageId>Gemstone.PQDIF</PackageId> | ||
<Authors>Grid Protection Alliance</Authors> | ||
<Company>Grid Protection Alliance</Company> | ||
<Product>Gemstone</Product> | ||
<PackageDescription>GPA Gemstone PQDIF Library</PackageDescription> | ||
<Description>GPA Gemstone Power Quality Data Exchange File Format Parser Library</Description> | ||
<Copyright>Copyright © 2022</Copyright> | ||
<PackageProjectUrl>https://github.com/gemstone</PackageProjectUrl> | ||
<PackageIcon>gemstone-square-128.png</PackageIcon> | ||
<RepositoryUrl>https://github.com/gemstone/pqdif</RepositoryUrl> | ||
<RepositoryType>git</RepositoryType> | ||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> | ||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
<PackageTags>GPA;Gemstone;library;pqdif</PackageTags> | ||
<LangVersion>latest</LangVersion> | ||
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies> | ||
<Nullable>enable</Nullable> | ||
<PlatformTarget>AnyCPU</PlatformTarget> | ||
<Version>1.0.86</Version> | ||
<InformationalVersion Condition="'$(Configuration)'=='Release'">1.0.86 -- Release Build</InformationalVersion> | ||
<InformationalVersion Condition="'$(Configuration)'!='Release'">1.0.86 -- Debug Build</InformationalVersion> | ||
<Configurations>Debug;Release;Development</Configurations> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<OutputPath>..\..\build\$(Configuration)</OutputPath> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<DocumentationFile>..\..\build\$(Configuration)\$(AssemblyName).xml</DocumentationFile> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)'=='Development'"> | ||
<DebugType>Full</DebugType> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<None Remove="TagDefinitions.xml" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<EmbeddedResource Include="TagDefinitions.xml"> | ||
<LogicalName>TagDefinitions.xml</LogicalName> | ||
</EmbeddedResource> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<None Include="..\..\docs\img\gemstone-square-128.png" Link="gemstone-square-128.png" Visible="false"> | ||
<Pack>True</Pack> | ||
<PackagePath /> | ||
</None> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="DotNetZip" Version="1.13.4" /> | ||
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="1.1.1" /> | ||
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" /> | ||
<PackageReference Include="System.Memory" Version="4.5.3" Condition="'$(TargetFramework)' == 'netstandard2.0'" /> | ||
</ItemGroup> | ||
|
||
<Import Sdk="Microsoft.NET.Sdk" Project="Sdk.targets" /> | ||
|
||
<PropertyGroup Condition="'$(SIGNTOOL)' != ''"> | ||
<PostBuildEvent>$(SIGNTOOL) $(TargetPath)</PostBuildEvent> | ||
</PropertyGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.