-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEsotericDevZone.Core.csproj
More file actions
48 lines (42 loc) · 1.46 KB
/
EsotericDevZone.Core.csproj
File metadata and controls
48 lines (42 loc) · 1.46 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Version>1.4.2</Version>
<AssemblyVersion>1.4.2</AssemblyVersion>
<FileVersion>1.4.2</FileVersion>
<Title>EsotericDevZone.Core</Title>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Authors>NotImplementedfLife</Authors>
<Description>Common elements for EsotericDevZone packages</Description>
<Copyright>Copyright ©NotImplementedLife 2023</Copyright>
<ApplicationIcon>esodev2.ico</ApplicationIcon>
<PackageIcon>icon.png</PackageIcon>
<SignAssembly>True</SignAssembly>
<DelaySign>False</DelaySign>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<AssemblyOriginatorKeyFile>C:\Users\NotImpLife\Desktop\EsotericDevZone.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<ItemGroup>
<Content Include="esodev2.ico" />
</ItemGroup>
<ItemGroup>
<None Include="C:\Users\NotImpLife\Desktop\EsotericDevZone\EsotericDevZone.Core\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
</ItemGroup>
<ItemGroup>
<None Update="icon.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Update="LICENSE">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>