-
Notifications
You must be signed in to change notification settings - Fork 1
/
DotStd17.csproj
45 lines (39 loc) · 1.72 KB
/
DotStd17.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="$(ProjectDir)..\Version.targets" Condition="exists('$(ProjectDir)..\Version.targets')" />
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<RootNamespace>DotStd</RootNamespace>
<AssemblyName>DotStd</AssemblyName>
<Version>1.1.6</Version>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<PackageProjectUrl>https://www.menasoft.com</PackageProjectUrl>
<PackageIcon>DotStd.png</PackageIcon>
<RepositoryUrl>https://github.com/MenaceSan/DotStd</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<Description>Supplemental shared c# common libraries.</Description>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<ApplicationIcon>DotStd.ico</ApplicationIcon>
<SignAssembly>false</SignAssembly>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="8.0.1" />
<PackageReference Include="Microsoft.Extensions.Configuration" Version="8.0.0" />
<PackageReference Include="System.Runtime" Version="4.3.1" />
<PackageReference Include="System.ValueTuple" Version="4.5.0" />
</ItemGroup>
<ItemGroup>
<None Include="DotStd.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
<None Include="LICENSE.txt">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
<Target Name="PreBuild" BeforeTargets="PreBuildEvent">
<Exec Command="SubWCRev.exe "$(ProjectDir).." "$(ProjectDir)../Version.targets.template" "$(ProjectDir)../Version.targets"" />
</Target>
</Project>