-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsortxml.csproj
43 lines (43 loc) · 1.88 KB
/
sortxml.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<PackageId>sortxml</PackageId>
<Product>Bricksoft.PowerTools</Product>
<AssemblyName>sortxml</AssemblyName>
<AssemblyTitle>sortxml</AssemblyTitle>
<Version>2.1.2005.3015</Version>
<Description>Simple utility that sorts (and prettifies) xml files.</Description>
<Company></Company>
<Authors>[email protected]</Authors>
<Copyright>Copyright (c) 2014-2020 Kody Brown</Copyright>
<RepositoryUrl>https://github.com/kodybrown/sortxml</RepositoryUrl>
<Platforms>AnyCPU;x64;x86</Platforms>
<RootNamespace>Bricksoft.sortxml</RootNamespace>
<StartupObject>sortxml.Program</StartupObject>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x86'">
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<DebugType>none</DebugType>
<DebugSymbols>false</DebugSymbols>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'">
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<DebugType>none</DebugType>
<DebugSymbols>false</DebugSymbols>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<DebugType>none</DebugType>
<DebugSymbols>false</DebugSymbols>
</PropertyGroup>
</Project>