-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathSystem.Reflection.ZipAssembly.csproj
More file actions
55 lines (55 loc) · 2.53 KB
/
Copy pathSystem.Reflection.ZipAssembly.csproj
File metadata and controls
55 lines (55 loc) · 2.53 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
48
49
50
51
52
53
54
55
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netcoreapp2.0;netcoreapp2.1;netstandard2.0;net40;net45;net451;net452;net46;net461;net462;net47;net471;net472</TargetFrameworks>
<AssemblyName>System.Reflection.ZipAssembly</AssemblyName>
<LangVersion>latest</LangVersion>
<Company>Els_kom org.</Company>
<Authors>Els_kom org.</Authors>
<PackageTags>System.Reflection.ZipAssembly</PackageTags>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/Elskom/ZipAssembly/</RepositoryUrl>
<PackageProjectUrl>https://github.com/Elskom/ZipAssembly/</PackageProjectUrl>
<PackageLicenseUrl>https://github.com/Elskom/ZipAssembly/blob/master/LICENSE</PackageLicenseUrl>
<Copyright>Copyright (c) 2018</Copyright>
<Description>A .NET library for loading assemblies from zip files.</Description>
<PackageReleaseNotes>Target .NET Standard and multiple .NET Framework versions.</PackageReleaseNotes>
<Version>1.0.0</Version>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DefineConstants>DEBUG;TRACE</DefineConstants>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<WarningsAsErrors />
<OutputPath>bin\Any CPU\Debug\</OutputPath>
<DocumentationFile>bin\Any CPU\Debug\System.Reflection.ZipAssembly.xml</DocumentationFile>
<DebugType>full</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<WarningsAsErrors />
<OutputPath>bin\Any CPU\Release\</OutputPath>
<DocumentationFile>bin\Any CPU\Release\System.Reflection.ZipAssembly.xml</DocumentationFile>
<DebugType>full</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<ItemGroup>
<None Remove=".gitignore" />
<None Remove="appveyor.yml" />
<None Remove="LICENSE" />
<None Remove="readme.md" />
<None Remove="stylecop.json" />
</ItemGroup>
<ItemGroup>
<AdditionalFiles Include="stylecop.json" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="StyleCop.Analyzers" Version="1.1.0-beta009">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<Reference Include="System.IO.Compression" Condition="'$(TargetFramework.StartsWith('net4'))'" />
</ItemGroup>
</Project>