-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathYamatoDaiwaCS_Extensions.csproj
59 lines (52 loc) · 2.11 KB
/
YamatoDaiwaCS_Extensions.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Title>Yamato Daiwa CS(harp) Extensions</Title>
<Description>General utilities like additional "String" or "DateOnly" methods which are missing in standard classes.</Description>
<Version>0.1.0</Version>
<RootNamespace>YamatoDaiwa.CSharpExtensions</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<RepositoryUrl>https://github.com/TokugawaTakeshi/Yamato-Daiwa-CS-Extensions.git</RepositoryUrl>
<PackageIcon>NuGetProjectIcon.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
<LangVersion>13</LangVersion>
</PropertyGroup>
<ItemGroup>
<Compile Remove="%2a%2a\**" />
<Compile Include="ArrayExtensions.cs" />
<Compile Include="DateOnlyExtensions.cs" />
<Compile Include="DateTimeExtensions.cs" />
<Compile Include="DictionaryExtensions.cs" />
<Compile Include="EmailAddress.cs" />
<Compile Include="ListExtensions.cs" />
<Compile Include="NumberExtensions.cs" />
<Compile Include="RandomValuesGenerator.cs" />
<Compile Include="DataMocking\DataMocking.cs" />
<Compile Include="DataMocking\MockGatewayHelper.cs" />
<Compile Include="DataMocking\MockGatewayHelperEnglishLocalization.cs" />
<Compile Include="Exceptions\DataRetrievingFailedException.cs" />
<Compile Include="Exceptions\DataSubmittingFailedException.cs" />
<Compile Include="StringExtensions.cs" />
<EmbeddedResource Remove="%2a%2a\**" />
<None Remove="%2a%2a\**" />
</ItemGroup>
<ItemGroup>
<Compile Remove="%2a%2a/%2a.cs" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Remove="%2a%2a/%2a.resx" />
</ItemGroup>
<ItemGroup>
<None Remove="%2a%2a/%2a" />
</ItemGroup>
<ItemGroup>
<None Include="NuGetProjectIcon.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
<None Include="README.md" Pack="true" PackagePath="\"/>
</ItemGroup>
</Project>