Welcome to mirror list, hosted at ThFree Co, Russian Federation.

UVtools.Cmd.csproj « UVtools.Cmd - github.com/sn4k3/UVtools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 44b2f1889cc623169fb14ac231d1cb29da7278f6 (plain)
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
<Project Sdk="Microsoft.NET.Sdk">

  <PropertyGroup>
    <OutputType>Exe</OutputType>
    <TargetFramework>net6.0</TargetFramework>
    <AssemblyName>UVtoolsCmd</AssemblyName>
    <ApplicationIcon>UVtools.ico</ApplicationIcon>
    <Version>1.0.5</Version>
    <Authors>Tiago Conceição, sn4k3</Authors>
    <Company>PTRTECH</Company>
    <PackageLicenseFile>LICENSE</PackageLicenseFile>
    <RepositoryUrl>https://github.com/sn4k3/UVtools</RepositoryUrl>
    <PackageIcon>UVtools.png</PackageIcon>
    <PackageProjectUrl>https://github.com/sn4k3/UVtools</PackageProjectUrl>
    <Description>MSLA/DLP, file analysis, repair, conversion and manipulation</Description>
    <Copyright>Copyright © 2020 PTRTECH</Copyright>
    <RepositoryType>Git</RepositoryType>
    <PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
    <Platforms>AnyCPU;x64</Platforms>
    <Nullable>enable</Nullable>
  </PropertyGroup>

  <ItemGroup>
    <PackageReference Include="System.CommandLine" Version="2.0.0-beta4.22272.1" />
  </ItemGroup>

  <ItemGroup>
    <ProjectReference Include="..\UVtools.Core\UVtools.Core.csproj" />
  </ItemGroup>

  <ItemGroup>
    <None Include="..\LICENSE">
      <Pack>True</Pack>
      <PackagePath></PackagePath>
    </None>
    <None Include="..\UVtools.GUI\UVtools.png">
      <Pack>True</Pack>
      <PackagePath></PackagePath>
    </None>
  </ItemGroup>

</Project>