-
Notifications
You must be signed in to change notification settings - Fork 294
Expand file tree
/
Copy pathLinqToExcel.csproj
More file actions
47 lines (40 loc) · 2.23 KB
/
LinqToExcel.csproj
File metadata and controls
47 lines (40 loc) · 2.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net451;net46;netstandard2.0;netcoreapp3.1</TargetFrameworks>
<AssemblyVersion>2.0.0.4</AssemblyVersion>
<FileVersion>2.0.0.0</FileVersion>
<Version>2.0.0-PRERELEASE-4</Version>
<Company>Yoder Web Solutions, LLC</Company>
<Authors>Paul Yoder, Stephen Workman</Authors>
<Description>Easily retrieve data from spreadsheets and csv files by using LINQ</Description>
<Copyright>Copyright © Paul Yoder 2020</Copyright>
<PackageLicenseUrl>https://github.com/paulyoder/LinqToExcel/blob/master/License.txt</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/paulyoder/LinqToExcel</PackageProjectUrl>
<PackageTags>Linq Excel spreadsheet csv</PackageTags>
<NeutralLanguage>en-US</NeutralLanguage>
<GeneratePackageOnBuild Condition="'$(Configuration)' == 'Release'">true</GeneratePackageOnBuild>
<SignAssembly>true</SignAssembly>
<DelaySign>false</DelaySign>
<AssemblyOriginatorKeyFile>LinqToExcel.snk</AssemblyOriginatorKeyFile>
<RepositoryUrl>https://github.com/paulyoder/LinqToExcel</RepositoryUrl>
<!-- Optional: Publish the repository URL in the built .nupkg (in the NuSpec <Repository> element) -->
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<!-- Optional: Embed source files that are not tracked by the source control manager in the PDB -->
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<!-- Optional: Include the PDB in the built .nupkg -->
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
<Platforms>AnyCPU;x86</Platforms>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Remotion.Linq" Version="2.2.0" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp3.1' or '$(TargetFramework)' == 'netstandard2.0'">
<PackageReference Include="System.Data.OleDb" Version="4.7.1" />
</ItemGroup>
<ItemGroup>
<None Update="License.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>