Skip to content

Commit 6388a3c

Browse files
Version 2.0.0
1 parent f867a1d commit 6388a3c

File tree

1 file changed

+26
-2
lines changed

1 file changed

+26
-2
lines changed

TextFileConvert/TextFileConvert.csproj

Lines changed: 26 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,43 @@
88
<Description>This provides text file conversion capabilities like the common Unix utilities "ux2dos" and "dos2ux".</Description>
99
<Copyright>Copyright 2018 Adam Kauffman</Copyright>
1010
<Deterministic>false</Deterministic>
11-
<AssemblyVersion>1.0.0.0</AssemblyVersion>
11+
<AssemblyVersion>2.0.0</AssemblyVersion>
1212
<PackageReleaseNotes>The first release verified with integration tests.</PackageReleaseNotes>
1313
<PackageTags>ux2dos, dos2ux</PackageTags>
1414
<PackageProjectUrl>https://github.com/A9G-Data-Droid/TextFileConvert</PackageProjectUrl>
1515
<PackageIcon>ux2dos.png</PackageIcon>
1616
<RepositoryUrl>https://github.com/A9G-Data-Droid/TextFileConvert</RepositoryUrl>
17-
<RepositoryType>GitHub</RepositoryType>
17+
<RepositoryType></RepositoryType>
1818
<PackageLicenseExpression>BSD-2-Clause</PackageLicenseExpression>
1919
<Company />
2020
<DefaultItemExcludes>$(DefaultItemExcludes);$(ProjectDir)**\*.vb</DefaultItemExcludes>
2121
<LangVersion>latest</LangVersion>
22+
<ApplicationIcon>ux2dos.ico</ApplicationIcon>
23+
<Nullable>enable</Nullable>
24+
<Title>Text File Convert Line Endings</Title>
25+
<FileVersion>$(AssemblyVersion)</FileVersion>
26+
<EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild>
27+
<EnableNETAnalyzers>True</EnableNETAnalyzers>
28+
<AnalysisLevel>latest-recommended</AnalysisLevel>
29+
<Version>$(AssemblyVersion)</Version>
30+
<PackageReadmeFile>README.md</PackageReadmeFile>
31+
</PropertyGroup>
32+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
33+
<WarningLevel>7</WarningLevel>
34+
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
35+
</PropertyGroup>
36+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
37+
<WarningLevel>7</WarningLevel>
38+
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
2239
</PropertyGroup>
2340
<ItemGroup>
41+
<Content Include="ux2dos.ico" />
42+
</ItemGroup>
43+
<ItemGroup>
44+
<None Include="..\README.md">
45+
<Pack>True</Pack>
46+
<PackagePath>\</PackagePath>
47+
</None>
2448
<None Include="ux2dos.png" Pack="true" PackagePath="">
2549
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
2650
</None>

0 commit comments

Comments
 (0)