-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathSpring.FluentContext.Web.csproj
More file actions
33 lines (33 loc) · 1.36 KB
/
Spring.FluentContext.Web.csproj
File metadata and controls
33 lines (33 loc) · 1.36 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net462</TargetFramework>
<Description>Allows creating Spring.NET IoC container from code using fluent API</Description>
<Copyright>Copyright © 2012-2019, Wojciech Kotlarski</Copyright>
<Authors>Wojciech Kotlarski</Authors>
<PackageProjectUrl>https://github.com/Suremaker/Spring.FluentContext</PackageProjectUrl>
<Version>3.0.0</Version>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/Suremaker/Spring.FluentContext</RepositoryUrl>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<IncludeSymbols>True</IncludeSymbols>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageOutputPath>$(SolutionDir)\output</PackageOutputPath>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<IsPackable>true</IsPackable>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Spring.Web" Version="3.0.1" />
</ItemGroup>
<ItemGroup>
<Reference Include="System.Configuration" />
<Reference Include="System.Web" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Spring.FluentContext\Spring.FluentContext.csproj" />
</ItemGroup>
<ItemGroup>
<None Remove="emptyContext.xml" />
<EmbeddedResource Include="emptyContext.xml" />
</ItemGroup>
</Project>