-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMiniInvoiceAPI.csproj
More file actions
47 lines (39 loc) · 1.79 KB
/
Copy pathMiniInvoiceAPI.csproj
File metadata and controls
47 lines (39 loc) · 1.79 KB
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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<Description>Sample program ini dibuat untuk contoh CRUD,
beri masukan di repo group atau email saya di :
ganjar56@gmail.com
github.com :
https://github.com/granzginz/Sample-Mini-Invoice-NetCore-3.1-REST_API</Description>
<Copyright>Ginanjar</Copyright>
<RepositoryUrl>https://github.com/granzginz/Sample-Mini-Invoice-NetCore-3.1-REST_API</RepositoryUrl>
<RepositoryType>github</RepositoryType>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="3.1.6" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="3.1.9" />
<PackageReference Include="System.Data.SqlClient" Version="4.8.2" />
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="6.11.1" />
</ItemGroup>
<ItemGroup>
<Folder Include="Interface\IAuthentication\" />
<Folder Include="Interface\IMaster\" />
<Folder Include="Interface\ITransaction\" />
</ItemGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Debug'">
<TypeScriptTarget>ES2021</TypeScriptTarget>
<TypeScriptJSXEmit>React</TypeScriptJSXEmit>
<TypeScriptModuleKind>AMD</TypeScriptModuleKind>
<TypeScriptCompileOnSaveEnabled>True</TypeScriptCompileOnSaveEnabled>
<TypeScriptNoImplicitAny>False</TypeScriptNoImplicitAny>
<TypeScriptRemoveComments>False</TypeScriptRemoveComments>
<TypeScriptOutFile />
<TypeScriptOutDir />
<TypeScriptGeneratesDeclarations>False</TypeScriptGeneratesDeclarations>
<TypeScriptNoEmitOnError>True</TypeScriptNoEmitOnError>
<TypeScriptSourceMap>True</TypeScriptSourceMap>
<TypeScriptMapRoot />
<TypeScriptSourceRoot />
</PropertyGroup>
</Project>