mirror of
https://github.com/nsnail/dot.git
synced 2025-06-18 05:23:21 +08:00
47 lines
1.6 KiB
XML
47 lines
1.6 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<RootNamespace>Dot</RootNamespace>
|
|
<AssemblyName>dot</AssemblyName>
|
|
<Version>1.1.0</Version>
|
|
<Authors>nsnail</Authors>
|
|
<Copyright>Copyright (c) 2022 nsnail</Copyright>
|
|
<RepositoryUrl>https://github.com/nsnail/dot.git</RepositoryUrl>
|
|
<RepositoryType>git</RepositoryType>
|
|
<AssemblyTitle>功能全面的实用工具 - 程序员的瑞士军刀</AssemblyTitle>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="CommandLineParser" Version="2.9.1"/>
|
|
<PackageReference Include="NSExt" Version="1.0.6"/>
|
|
<PackageReference Include="ShellProgressBar" Version="5.2.0"/>
|
|
<PackageReference Include="TextCopy" Version="6.2.0"/>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<EmbeddedResource Update="Lang\Str.resx">
|
|
<Generator>PublicResXFileCodeGenerator</Generator>
|
|
<LastGenOutput>Str.Designer.cs</LastGenOutput>
|
|
</EmbeddedResource>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Update="Lang\Str.Designer.cs">
|
|
<DesignTime>True</DesignTime>
|
|
<AutoGen>True</AutoGen>
|
|
<DependentUpon>Str.resx</DependentUpon>
|
|
</Compile>
|
|
</ItemGroup>
|
|
|
|
</Project> |