mirror of
				https://github.com/esiur/esiur-dotnet.git
				synced 2025-10-30 23:51:34 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			77 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			77 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <Project Sdk="Microsoft.NET.Sdk">
 | |
| 
 | |
| 	<PropertyGroup>
 | |
| 		<Description>Distributed Resources Platform</Description>
 | |
| 		<Copyright>Ahmed Kh. Zamil</Copyright>
 | |
| 		<PackageProjectUrl>http://www.esiur.com</PackageProjectUrl>
 | |
| 		<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
 | |
| 		<Version>3.0.0</Version>
 | |
| 		<RepositoryUrl>https://github.com/esiur/esiur-dotnet</RepositoryUrl>
 | |
| 		<Authors>Ahmed Kh. Zamil</Authors>
 | |
| 		<AssemblyVersion></AssemblyVersion>
 | |
| 		<Company>Esiur Foundation</Company>
 | |
| 		<FileVersion></FileVersion>
 | |
| 		<AssemblyName>Esiur</AssemblyName>
 | |
| 		<RootNamespace>Esiur</RootNamespace>
 | |
| 		<PackageId>Esiur</PackageId>
 | |
| 		<Product>Esiur</Product>
 | |
| 		<LangVersion>latest</LangVersion>
 | |
| 		<TargetFramework>netstandard2.0</TargetFramework>
 | |
| 		<PackageReadmeFile>README.md</PackageReadmeFile>
 | |
| 		<ImplicitUsings>enable</ImplicitUsings>
 | |
| 		<PackageLicenseExpression>MIT</PackageLicenseExpression>
 | |
| 		<IsRoslynComponent>true</IsRoslynComponent>
 | |
| 	</PropertyGroup>
 | |
| 
 | |
| 	<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
 | |
| 		<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
 | |
| 		<DefineConstants>TRACE;DEBUG</DefineConstants>
 | |
| 	</PropertyGroup>
 | |
| 
 | |
| 	<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
 | |
| 		<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
 | |
| 	</PropertyGroup>
 | |
| 
 | |
| 	<ItemGroup>
 | |
| 		<Compile Remove="obj\**" />
 | |
| 		<EmbeddedResource Remove="obj\**" />
 | |
| 		<None Remove="obj\**" />
 | |
| 	</ItemGroup>
 | |
| 
 | |
| 	<ItemGroup>
 | |
| 		<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.14.0" PrivateAssets="all" />
 | |
| 		<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="4.14.0" PrivateAssets="all" />
 | |
| 		<PackageReference Include="System.ComponentModel.Annotations" Version="5.0.0" />
 | |
| 		<PackageReference Include="System.Reflection.Emit" Version="4.7.0" />
 | |
| 		<PackageReference Include="System.Reflection.Emit.Lightweight" Version="4.7.0" />
 | |
| 		<PackageReference Include="System.Text.Json" Version="9.0.8" GeneratePathProperty="true" />
 | |
| 	</ItemGroup>
 | |
| 
 | |
| 
 | |
| 	<ItemGroup>
 | |
| 		<None Include="$(OutputPath)\$(AssemblyName).dll" Pack="true" PackagePath="analyzers/dotnet/cs" Visible="false" />
 | |
| 		<!-- Package the Json dependency alongside the generator assembly -->
 | |
| 		<None Include="$(PkgSystem_Text_Json)\lib\netstandard2.0\*.dll" Pack="true" PackagePath="analyzers/dotnet/cs" Visible="false" />
 | |
| 		<None Include="Tools/*" Pack="true" PackagePath="tools/" />
 | |
| 	</ItemGroup>
 | |
| 
 | |
| 
 | |
| 	<ItemGroup>
 | |
| 	  <Compile Remove="Data\DataDeserializer - Copy.cs" />
 | |
| 	  <Compile Remove="Data\NullabilityInfo.cs" />
 | |
| 	  <Compile Remove="Data\NullabilityInfoContext.cs" />
 | |
| 	</ItemGroup>
 | |
| 
 | |
| 
 | |
| 	<ItemGroup>
 | |
| 		<None Include="Data\DataDeserializer - Copy.cs" />
 | |
| 		<None Include="Data\NullabilityInfo.cs" />
 | |
| 		<None Include="Data\NullabilityInfoContext.cs" />
 | |
| 		<None Include="LICENSE" Pack="true" PackagePath=""></None>
 | |
| 		<None Include="README.md" Pack="true" PackagePath="" />
 | |
| 	</ItemGroup>
 | |
| 
 | |
| 
 | |
| 
 | |
| </Project>
 |