-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SMD Move tool.csproj
34 lines (30 loc) · 1.04 KB
/
SMD Move tool.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
<RootNamespace>SMD_Move_tool</RootNamespace>
<Version>1.0.0</Version>
<Authors>JarosLucky</Authors>
<ApplicationIcon />
<Win32Resource />
<StartupObject>SMD_Move_tool.Program</StartupObject>
<PackageProjectUrl>https://github.com/JarosLucky/SMD-Move-Tool</PackageProjectUrl>
<RepositoryUrl>https://github.com/JarosLucky/SMD-Move-Tool</RepositoryUrl>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<NeutralLanguage>en</NeutralLanguage>
<AnalysisLevel>latest</AnalysisLevel>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<ErrorReport>none</ErrorReport>
<DebugType>none</DebugType>
<DebugSymbols>false</DebugSymbols>
<OutputPath>bin\Out\</OutputPath>
<PlatformTarget>AnyCPU</PlatformTarget>
</PropertyGroup>
<ItemGroup>
<None Include="LICENSE">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
</Project>